mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 10:46:07 +00:00

This patch removes many annotations that are not relevant anymore since we don't support or test back-deploying to macOS < 10.13. It also cleans up raw usage of target triples to identify versions of dylibs shipped on prior versions of macOS, and uses the target-agnostic Lit features instead. Finally, it reorders both the Lit backdeployment features and the corresponding availability macros in the library in a way that makes more sense, and reformulates the Lit backdeployment features in terms of when a version of LLVM was introduced instead of encoding the system versions on which it hasn't been introduced yet. Although one can be derived from the other, encoding the negative form is extremely error-prone. Fixes #80901
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: no-exceptions
|
|
|
|
// ___cxa_throw_bad_array_new_length is re-exported from libc++ only starting
|
|
// in LLVM 9.
|
|
// XFAIL: using-built-library-before-llvm-9
|
|
|
|
#include <cxxabi.h>
|
|
#include <new>
|
|
|
|
// If the expression passed to operator new[] would result in an overflow, the
|
|
// allocation function is not called, and a std::bad_array_new_length exception
|
|
// is thrown instead (5.3.4p7).
|
|
bool bad_array_new_length_test() {
|
|
try {
|
|
// We test this directly because Clang does not currently codegen the
|
|
// correct call to __cxa_bad_array_new_length, so this test would result
|
|
// in passing -1 to ::operator new[], which would then throw a
|
|
// std::bad_alloc, causing the test to fail.
|
|
__cxxabiv1::__cxa_throw_bad_array_new_length();
|
|
} catch ( const std::bad_array_new_length &banl ) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int main(int, char**) {
|
|
int ret_val = 0;
|
|
|
|
if ( !bad_array_new_length_test ()) {
|
|
ret_val = 1;
|
|
}
|
|
|
|
return ret_val;
|
|
}
|