Louis Dionne | 3956a34 | 2023-06-14 22:36:37 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Louis Dionne | 2583946 | 2023-08-08 22:10:10 | [diff] [blame] | 9 | #include <__verbose_abort> |
Louis Dionne | 3956a34 | 2023-06-14 22:36:37 | [diff] [blame] | 10 | #include <new> |
| 11 | |
| 12 | namespace std { // purposefully not versioned |
| 13 | |
| 14 | #ifndef __GLIBCXX__ |
| 15 | const nothrow_t nothrow{}; |
| 16 | #endif |
| 17 | |
| 18 | #ifndef LIBSTDCXX |
| 19 | |
| 20 | void __throw_bad_alloc() { |
| 21 | # ifndef _LIBCPP_HAS_NO_EXCEPTIONS |
| 22 | throw bad_alloc(); |
| 23 | # else |
Louis Dionne | 2583946 | 2023-08-08 22:10:10 | [diff] [blame] | 24 | _LIBCPP_VERBOSE_ABORT("bad_alloc was thrown in -fno-exceptions mode"); |
Louis Dionne | 3956a34 | 2023-06-14 22:36:37 | [diff] [blame] | 25 | # endif |
| 26 | } |
| 27 | |
| 28 | #endif // !LIBSTDCXX |
| 29 | |
| 30 | } // namespace std |