Corresponding test changes for r106564.

llvm-svn: 106569
This commit is contained in:
Bill Wendling 2010-06-22 20:30:14 +00:00
parent a91c0ba88a
commit 7e35d39fee
1 changed files with 4 additions and 4 deletions

View File

@ -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