Cleanup testcase.

llvm-svn: 155317
This commit is contained in:
Rafael Espindola 2012-04-22 16:03:00 +00:00
parent bbc5cbc410
commit 1e762442c7
1 changed files with 2 additions and 3 deletions

View File

@ -665,11 +665,10 @@ namespace test33 {
template<typename T>
class foo {
void bar() {}
int a;
};
struct __attribute__((visibility("hidden"))) zed {
struct HIDDEN zed {
};
template class __attribute__((visibility("default"))) foo<zed>;
template class DEFAULT foo<zed>;
// CHECK: define weak_odr void @_ZN6test333fooINS_3zedEE3barEv
// CHECK-HIDDEN: define weak_odr void @_ZN6test333fooINS_3zedEE3barEv
}