diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-08-01 20:39:36 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-08-01 20:39:36 +0000 |
commit | 1ba0a07e46c96e81c2f60dd8010ce592c2330119 (patch) | |
tree | 25ad4bb448b84827572802a3fcedc84e0ff2170b /clang/test/CodeGenCXX/attr-used.cpp | |
parent | e2d6429493d748e24917f8217f7ddd4d29d21ba2 (diff) | |
download | bcm5719-llvm-1ba0a07e46c96e81c2f60dd8010ce592c2330119.tar.gz bcm5719-llvm-1ba0a07e46c96e81c2f60dd8010ce592c2330119.zip |
Re-commit r214547 with tests fixed. Hopefully all the bots will be happy now.
Original message:
Fix iterator invalidation issues that are breaking my modules buildbot's
bootstrap.
llvm-svn: 214555
Diffstat (limited to 'clang/test/CodeGenCXX/attr-used.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/attr-used.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/CodeGenCXX/attr-used.cpp b/clang/test/CodeGenCXX/attr-used.cpp index 86173466735..d2a73f7d33e 100644 --- a/clang/test/CodeGenCXX/attr-used.cpp +++ b/clang/test/CodeGenCXX/attr-used.cpp @@ -2,16 +2,16 @@ // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors struct X0 { - // CHECK: define linkonce_odr {{.*}} @_ZN2X0C1Ev + // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X0C1Ev __attribute__((used)) X0() {} - // CHECK: define linkonce_odr {{.*}} @_ZN2X0D1Ev + // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X0D1Ev __attribute__((used)) ~X0() {} }; // PR19743: not emitting __attribute__((used)) inline methods in nested classes. struct X1 { struct Nested { - // CHECK: define linkonce_odr {{.*}} @_ZN2X16Nested1fEv + // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X16Nested1fEv void __attribute__((used)) f() {} }; }; @@ -22,6 +22,6 @@ struct X2 { void __attribute__((used)) bar() { foo(); } void foo() { } - // CHECK: define linkonce_odr {{.*}} @_ZN2X23barEv - // CHECK: define linkonce_odr {{.*}} @_ZN2X23fooEv + // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23barEv + // CHECK-DAG: define linkonce_odr {{.*}} @_ZN2X23fooEv }; |