diff options
author | John McCall <rjmccall@apple.com> | 2010-08-05 20:39:18 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-05 20:39:18 +0000 |
commit | 5513fce96b884195bbdb5c12e428490666514cdc (patch) | |
tree | eb99d485884af20b43e9add1ed674ea89c2eb0a6 /clang/test/CodeGenCXX/vtable-linkage.cpp | |
parent | fa5d2415b64cd5f6ef942ec6d06dea2a67185c73 (diff) | |
download | bcm5719-llvm-5513fce96b884195bbdb5c12e428490666514cdc.tar.gz bcm5719-llvm-5513fce96b884195bbdb5c12e428490666514cdc.zip |
It turns out that linkers (at least, the Darwin linker) don't necessarily
do the right thing with mixed-visibility symbols, so disable the visibility
optimization where that's possible, i.e. with template classes (since it's
possible that an arbitrary template might be subject to an explicit
instantiation elsewhere). 447.dealII actually does this.
I've put the code under an option that's currently not hooked up to anything.
llvm-svn: 110374
Diffstat (limited to 'clang/test/CodeGenCXX/vtable-linkage.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/vtable-linkage.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGenCXX/vtable-linkage.cpp b/clang/test/CodeGenCXX/vtable-linkage.cpp index 67980edf7be..6c1301bee1e 100644 --- a/clang/test/CodeGenCXX/vtable-linkage.cpp +++ b/clang/test/CodeGenCXX/vtable-linkage.cpp @@ -137,10 +137,10 @@ void use_F() { // CHECK-7: @_ZTI1EIlE = weak_odr constant // F<long> is an implicit template instantiation with no key function, -// so its vtable should have weak_odr linkage and hidden visibility. -// CHECK-8: @_ZTV1FIlE = weak_odr hidden constant +// so its vtable should have weak_odr linkage. +// CHECK-8: @_ZTV1FIlE = weak_odr constant // CHECK-8: @_ZTS1FIlE = weak_odr constant -// CHECK-8: @_ZTI1FIlE = weak_odr hidden constant +// CHECK-8: @_ZTI1FIlE = weak_odr constant // F<int> is an explicit template instantiation declaration without a // key function, so its vtable should have external linkage. @@ -164,10 +164,10 @@ void use_F() { // CHECK-12: @_ZTIN12_GLOBAL__N_11AE = internal constant // F<char> is an explicit specialization without a key function, so -// its vtable should have weak_odr linkage and hidden visibility. -// CHECK-13: @_ZTV1FIcE = weak_odr hidden constant +// its vtable should have weak_odr linkage. +// CHECK-13: @_ZTV1FIcE = weak_odr constant // CHECK-13: @_ZTS1FIcE = weak_odr constant -// CHECK-13: @_ZTI1FIcE = weak_odr hidden constant +// CHECK-13: @_ZTI1FIcE = weak_odr constant // RUN: FileCheck --check-prefix=CHECK-G %s < %t // |