bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/pr18661.cpp

15 lines
417 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 %s -triple %itanium_abi_triple -fcxx-exceptions -fms-compatibility -emit-llvm -o - | FileCheck %s
extern "C" {
void f();
// In MS mode we don't validate the exception specification.
void f() throw() {
}
}
// PR18661: Clang would fail to emit function definition with mismatching
// exception specification, even though it was just treated as a warning.
// CHECK: define {{.*}}void @f()