diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-06-13 22:51:21 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-06-13 22:51:21 +0000 |
commit | a526f275e3a9e2571bc9fb5f8e7083504b3ffe97 (patch) | |
tree | 26f7ba39ef8313fa4830be5afc247bc6414a4dee /clang/test/CodeGenCXX/attr-used.cpp | |
parent | 3ecbd59c273221cab269cd56cd13076d90b4cb90 (diff) | |
download | bcm5719-llvm-a526f275e3a9e2571bc9fb5f8e7083504b3ffe97.tar.gz bcm5719-llvm-a526f275e3a9e2571bc9fb5f8e7083504b3ffe97.zip |
Whack a bunch of tests in CodeGenCXX to work on ARM (using ARM ABI). Batch 1 of 3 or so.
llvm-svn: 132945
Diffstat (limited to 'clang/test/CodeGenCXX/attr-used.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/attr-used.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/attr-used.cpp b/clang/test/CodeGenCXX/attr-used.cpp index 26109e7c630..2c82184081b 100644 --- a/clang/test/CodeGenCXX/attr-used.cpp +++ b/clang/test/CodeGenCXX/attr-used.cpp @@ -2,8 +2,8 @@ // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors struct X0 { - // CHECK: define linkonce_odr void @_ZN2X0C1Ev + // CHECK: define linkonce_odr {{.*}} @_ZN2X0C1Ev __attribute__((used)) X0() {} - // CHECK: define linkonce_odr void @_ZN2X0D1Ev + // CHECK: define linkonce_odr {{.*}} @_ZN2X0D1Ev __attribute__((used)) ~X0() {} }; |