diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-06-22 20:30:14 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-06-22 20:30:14 +0000 |
commit | 649fa7bad061cfab53eedd054ae98c4dafb2158a (patch) | |
tree | 6eb50d4cbdee67cc8a08e9e7f2c5371b9d1bac2a /test | |
parent | 07f639fca4d9f6b6c2ccb40f17d33cae3b3d6771 (diff) |
Corresponding test changes for r106564.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/FrontendC++/thunk-linkonce-odr.cpp (renamed from test/FrontendC++/thunk-weak-odr.cpp) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/FrontendC++/thunk-weak-odr.cpp b/test/FrontendC++/thunk-linkonce-odr.cpp index 1d9d4dd2ed..ad72e64aa8 100644 --- a/test/FrontendC++/thunk-weak-odr.cpp +++ b/test/FrontendC++/thunk-linkonce-odr.cpp @@ -1,5 +1,5 @@ // RUN: %llvmgxx %s -S -o - | FileCheck %s -// <rdar://problem/7929157> +// <rdar://problem/7929157> & <rdar://problem/8104369> struct A { virtual int f() { return 1; } @@ -27,7 +27,7 @@ int g() { return f(&d); } -// Thunks should be marked as "weak ODR", not just "weak". +// Thunks should be marked as "linkonce ODR" not "weak". // -// CHECK: define weak_odr i32 @_ZThn{{[48]}}_N1C1fEv -// CHECK: define weak_odr i32 @_ZThn{{[48]}}_N1D1fEv +// CHECK: define linkonce_odr i32 @_ZThn{{[48]}}_N1C1fEv +// CHECK: define linkonce_odr i32 @_ZThn{{[48]}}_N1D1fEv |