1 // RUN: %clang_cc1 -I%S %s -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -o - | FileCheck %s
7 struct A
{ virtual void f(); };
9 // CHECK: @_ZN5Test16int_tiE ={{.*}} constant ptr @_ZTIi, align 8
10 const std::type_info
&int_ti
= typeid(int);
12 // CHECK: @_ZN5Test14A_tiE ={{.*}} constant ptr @_ZTIN5Test11AE, align 8
13 const std::type_info
&A_ti
= typeid(const volatile A
&);
17 // CHECK: @_ZN5Test14c_tiE ={{.*}} constant ptr @_ZTIc, align 8
18 const std::type_info
&c_ti
= typeid(c
);
20 extern const double &d
;
22 // CHECK: @_ZN5Test14d_tiE ={{.*}} constant ptr @_ZTId, align 8
23 const std::type_info
&d_ti
= typeid(d
);
27 // CHECK: @_ZN5Test14a_tiE ={{.*}} global
28 const std::type_info
&a_ti
= typeid(a
);
30 // CHECK: @_ZN5Test18A10_c_tiE ={{.*}} constant ptr @_ZTIA10_c, align 8
31 const std::type_info
&A10_c_ti
= typeid(char const[10]);
33 // CHECK-LABEL: define{{.*}} ptr @_ZN5Test11fEv
34 // CHECK-SAME: personality ptr @__gxx_personality_v0
38 // CHECK: invoke void @__cxa_bad_typeid() [[NR:#[0-9]+]]
39 return typeid(*static_cast<A
*>(0)).name();
41 // CHECK: landingpad { ptr, i32 }
42 // CHECK-NEXT: catch ptr null
50 // CHECK: attributes [[NR]] = { noreturn }