]> granicus.if.org Git - clang/commitdiff
Add tests for structs inside anonymous namespaces.
authorAnders Carlsson <andersca@mac.com>
Mon, 21 Dec 2009 00:57:38 +0000 (00:57 +0000)
committerAnders Carlsson <andersca@mac.com>
Mon, 21 Dec 2009 00:57:38 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91806 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/rtti-linkage.cpp

index 2875e19ae3110602c6b1f684f7c82d612fd7010e..53209ed96c78321b1530cf6dd37ad1a0d342ac39 100644 (file)
 // CHECK: _ZTSM1AP1C = internal constant
 // CHECK: _ZTIM1AP1C = internal constant
 
+// CHECK: _ZTSN12_GLOBAL__N_11DE = internal constant
+// CHECK: _ZTIN12_GLOBAL__N_11DE = internal constant
+// CHECK: _ZTSPN12_GLOBAL__N_11DE = internal constant
+// CHECK: _ZTIPN12_GLOBAL__N_11DE = internal constant
+
 // A has no key function, so its RTTI data should be weak_odr.
 struct A { };
 
@@ -38,7 +43,7 @@ void B::f() { }
 // internal linkage, as should the type info for C itself (FIXME).
 struct C;
 
-void f() {
+void t1() {
   (void)typeid(C*);
   (void)typeid(C**);
   (void)typeid(int C::*);
@@ -47,6 +52,16 @@ void f() {
   (void)typeid(C *C::*);
   (void)typeid(C A::*);
   (void)typeid(C* A::*);
-  
 }
 
+namespace {
+  // D is inside an anonymous namespace, so all type information related to D should have
+  // internal linkage.
+  struct D { };
+};
+
+void t2() {
+  (void)typeid(D);
+  (void)typeid(D *);
+  
+}