2011-02-16 02:11:42 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
|
|
|
|
// <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors
|
|
|
|
struct X0 {
|
2011-06-14 06:51:21 +08:00
|
|
|
// CHECK: define linkonce_odr {{.*}} @_ZN2X0C1Ev
|
2011-02-16 02:11:42 +08:00
|
|
|
__attribute__((used)) X0() {}
|
2011-06-14 06:51:21 +08:00
|
|
|
// CHECK: define linkonce_odr {{.*}} @_ZN2X0D1Ev
|
2011-02-16 02:11:42 +08:00
|
|
|
__attribute__((used)) ~X0() {}
|
|
|
|
};
|