Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / modules / std / new.inc
blob31c49057d0d2865c05ba503c6e0a53dc9438edd6
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 export namespace std {
11   // [alloc.errors], storage allocation errors
12   using std::bad_alloc;
13   using std::bad_array_new_length;
15   using std::destroying_delete;
16   using std::destroying_delete_t;
18   // global operator new control
19   using std::align_val_t;
21   using std::nothrow;
22   using std::nothrow_t;
24   using std::get_new_handler;
25   using std::new_handler;
26   using std::set_new_handler;
28   // [ptr.launder], pointer optimization barrier
29   using std::launder;
30 #if 0
31   // [hardware.interference], hardware interference size
32   using std::hardware_constructive_interference_size;
33   using std::hardware_destructive_interference_size;
34 #endif
35 } // namespace std
37 export {
38   using ::operator new;
39   using ::operator delete;
40   using ::operator new[];
41   using ::operator delete[];
42 } // export