From 39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 20 Feb 2011 13:06:31 +0000 Subject: Vendor import of clang trunk r126079: http://llvm.org/svn/llvm-project/cfe/trunk@126079 --- test/CodeGenCXX/template-instantiation.cpp | 51 ++++++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 2 deletions(-) (limited to 'test/CodeGenCXX/template-instantiation.cpp') diff --git a/test/CodeGenCXX/template-instantiation.cpp b/test/CodeGenCXX/template-instantiation.cpp index cb6c812..635e1d2 100644 --- a/test/CodeGenCXX/template-instantiation.cpp +++ b/test/CodeGenCXX/template-instantiation.cpp @@ -2,9 +2,12 @@ // CHECK-NOT: @_ZTVN5test118stdio_sync_filebufIwEE = constant // CHECK-NOT: _ZTVN5test315basic_fstreamXXIcEE -// CHECK: @_ZTVN5test018stdio_sync_filebufIwEE = constant +// CHECK: @_ZTVN5test018stdio_sync_filebufIwEE = unnamed_addr constant -// CHECK: define linkonce_odr void @_ZN5test21CIiEC1Ev( +// CHECK-NOT: _ZTVN5test31SIiEE +// CHECK-NOT: _ZTSN5test31SIiEE + +// CHECK: define linkonce_odr void @_ZN5test21CIiEC1Ev(%"class.test2::C"* nocapture %this) unnamed_addr // CHECK: define linkonce_odr void @_ZN5test21CIiE6foobarIdEEvT_( // CHECK: define available_externally void @_ZN5test21CIiE6zedbarEd( @@ -75,3 +78,47 @@ namespace test3 { // (test at the top). template void basic_fstreamXX::is_open() const; } + +namespace test3 { + template + struct S { + virtual void m(); + }; + + template + void S::m() { } + + // Should not cause us to produce vtable because template instantiations + // don't have key functions. + template void S::m(); +} + +namespace test4 { + template struct A { static void foo(); }; + + class B { + template friend void A::foo(); + B(); + }; + + template void A::foo() { + B b; + } + + unsigned test() { + A::foo(); + } +} + +namespace PR8505 { +// Hits an assertion due to bogus instantiation of class B. +template class A { + class B* g; +}; +class B { + void f () {} +}; +// Should not instantiate class B since it is introduced in namespace scope. +// CHECK-NOT: _ZN6PR85051AILi0EE1B1fEv +template class A<0>; +} -- cgit v1.1