mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 17:46:49 +00:00

This adds a new `__cxa_call_terminate`, which GCC 14 generates calls to now. Clang had `__clang_call_terminate` for the same use-case for a long time. It also fixes a test that is enabled now, since GCC has the `__has_feature` FTM now.
37 lines
843 B
C++
37 lines
843 B
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
|
|
|
|
// We're testing the diagnosed behaviour here.
|
|
// ADDITIONAL_COMPILE_FLAGS: -Wno-exceptions
|
|
|
|
#include <cassert>
|
|
#include <cstdlib>
|
|
#include <exception>
|
|
|
|
#include "test_macros.h"
|
|
|
|
void func() TEST_NOEXCEPT {
|
|
try {
|
|
throw 1;
|
|
} catch (float) {
|
|
}
|
|
}
|
|
|
|
void terminate_handler() {
|
|
assert(std::current_exception() != nullptr);
|
|
std::exit(0);
|
|
}
|
|
|
|
int main(int, char**) {
|
|
std::set_terminate(terminate_handler);
|
|
func();
|
|
assert(false);
|
|
}
|