]> granicus.if.org Git - clang/commitdiff
Fix a test case and teach ClearLinkageCache() to clear the linkage of
authorJohn McCall <rjmccall@apple.com>
Tue, 22 Mar 2011 06:58:49 +0000 (06:58 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 22 Mar 2011 06:58:49 +0000 (06:58 +0000)
a function template decl's pattern, which was suddenly exposed by my
last patch.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128073 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/Decl.cpp
test/CodeGenCXX/static-init.cpp

index 0dce211c136a0013de4e848484ed110dedf229a5..df72541fbf9bb9f2324d0745b81db525d88cd2d3 100644 (file)
@@ -639,10 +639,12 @@ void NamedDecl::ClearLinkageCache() {
 
   // Clear cached linkage for function template decls, too.
   if (FunctionTemplateDecl *temp =
-        dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this)))
+        dyn_cast<FunctionTemplateDecl>(const_cast<NamedDecl*>(this))) {
+    temp->getTemplatedDecl()->ClearLinkageCache();
     for (FunctionTemplateDecl::spec_iterator
            i = temp->spec_begin(), e = temp->spec_end(); i != e; ++i)
       i->ClearLinkageCache();
+  }
     
 }
 
index dd9ed61434e21a14e0e82fe6b9cbb67ce4a65310..78749a7a2faf66ceb6e62d36c21cb7df25946fef 100644 (file)
@@ -2,7 +2,7 @@
 
 // CHECK: @_ZZ1hvE1i = internal global i32 0, align 4
 
-// CHECK: @_ZZN5test16getvarEiE3var = internal constant [4 x i32] [i32 1, i32 0, i32 2, i32 4], align 16
+// CHECK: @_ZZN5test1L6getvarEiE3var = internal constant [4 x i32] [i32 1, i32 0, i32 2, i32 4], align 16
 // CHECK: @_ZZ2h2vE1i = linkonce_odr global i32 0
 // CHECK: @_ZGVZ2h2vE1i = linkonce_odr global i64 0
 
@@ -50,7 +50,7 @@ namespace test0 {
 }
 
 namespace test1 {
-  // CHECK: define internal i32 @_ZN5test16getvarEi(
+  // CHECK: define internal i32 @_ZN5test1L6getvarEi(
   static inline int getvar(int index) {
     static const int var[] = { 1, 0, 2, 4 };
     return var[index];