1 // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
2 
3 // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors
4 struct X0 {
5   // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X0C1Ev
X0X06   __attribute__((used)) X0() {}
7   // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X0D1Ev
~X0X08   __attribute__((used)) ~X0() {}
9 };
10 
11 // PR19743: not emitting __attribute__((used)) inline methods in nested classes.
12 struct X1 {
13   struct Nested {
14     // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X16Nested1fEv
fX1::Nested15     void __attribute__((used)) f() {}
16   };
17 };
18 
19 struct X2 {
20   // We must delay emission of bar() until foo() has had its body parsed,
21   // otherwise foo() would not be emitted.
barX222   void __attribute__((used)) bar() { foo(); }
fooX223   void foo() { }
24 
25   // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23barEv
26   // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23fooEv
27 };
28