2022-10-06 12:12:57 +02:00
|
|
|
// RUN: %clang_cc1 %s -triple=armv7-apple-darwin10 -emit-llvm -o - -fexceptions -fcxx-exceptions | FileCheck %s
|
2013-02-28 19:01:20 +00:00
|
|
|
|
|
|
|
// Check that we annotate all compiler-synthesized runtime calls and
|
|
|
|
// functions with the actual ABI-determined CC. This usually doesn't
|
|
|
|
// matter as long as we're internally consistent (and the LLVM-default
|
|
|
|
// CC is consistent with the real one), but it's possible for user
|
|
|
|
// translation units to define these runtime functions (or, equivalently,
|
|
|
|
// for us to get LTO'ed with such a translation unit), and then the
|
|
|
|
// mismatch will kill us.
|
|
|
|
|
|
|
|
// CHECK: [[A:%.*]] = type { double }
|
|
|
|
|
|
|
|
namespace test0 {
|
|
|
|
struct A {
|
|
|
|
double d;
|
|
|
|
A();
|
|
|
|
~A();
|
|
|
|
};
|
|
|
|
|
|
|
|
A global;
|
2014-12-05 01:06:59 +00:00
|
|
|
// CHECK-LABEL: define internal void @__cxx_global_var_init()
|
2022-10-06 12:12:57 +02:00
|
|
|
// CHECK: call noundef ptr @_ZN5test01AC1Ev(ptr {{[^,]*}} @_ZN5test06globalE)
|
|
|
|
// CHECK-NEXT: call i32 @__cxa_atexit(ptr @_ZN5test01AD1Ev, ptr @_ZN5test06globalE, ptr @__dso_handle) [[NOUNWIND:#[0-9]+]]
|
2013-02-28 19:01:20 +00:00
|
|
|
// CHECK-NEXT: ret void
|
|
|
|
}
|
|
|
|
|
2022-10-06 12:12:57 +02:00
|
|
|
// CHECK: declare i32 @__cxa_atexit(ptr, ptr, ptr) [[NOUNWIND]]
|
2013-02-28 19:01:20 +00:00
|
|
|
|
|
|
|
namespace test1 {
|
|
|
|
void test() {
|
|
|
|
throw 0;
|
|
|
|
}
|
|
|
|
|
2020-12-30 20:45:56 -08:00
|
|
|
// CHECK-LABEL: define{{.*}} void @_ZN5test14testEv()
|
2022-10-06 12:12:57 +02:00
|
|
|
// CHECK: [[T0:%.*]] = call ptr @__cxa_allocate_exception(i32 4) [[NOUNWIND]]
|
|
|
|
// CHECK-NEXT: store i32 0, ptr [[T0]]
|
|
|
|
// CHECK-NEXT: call void @__cxa_throw(ptr [[T0]], ptr @_ZTIi, ptr null) [[NORETURN:#[0-9]+]]
|
2013-02-28 19:01:20 +00:00
|
|
|
// CHECK-NEXT: unreachable
|
|
|
|
}
|
|
|
|
|
2022-10-06 12:12:57 +02:00
|
|
|
// CHECK: declare ptr @__cxa_allocate_exception(i32)
|
2013-02-28 19:01:20 +00:00
|
|
|
|
2022-10-06 12:12:57 +02:00
|
|
|
// CHECK: declare void @__cxa_throw(ptr, ptr, ptr)
|
2013-02-28 19:01:20 +00:00
|
|
|
|
2014-12-05 01:06:59 +00:00
|
|
|
// CHECK-LABEL: define internal void @_GLOBAL__sub_I_runtimecc.cpp()
|
|
|
|
// CHECK: call void @__cxx_global_var_init()
|
2013-02-28 19:01:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
// CHECK: attributes [[NOUNWIND]] = { nounwind }
|
|
|
|
// CHECK: attributes [[NORETURN]] = { noreturn }
|