[sema] Fix assertion hit when using libclang to index a particular C++ snippet involv...
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 11 Sep 2015 01:44:56 +0000 (01:44 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 11 Sep 2015 01:44:56 +0000 (01:44 +0000)
Assertion hit was in ClassTemplateSpecializationDecl::getSourceRange().

llvm-svn: 247373

clang/lib/Sema/SemaTemplate.cpp
clang/test/Index/index-file.cpp

index 5270050..b5b8b1e 100644 (file)
@@ -7386,11 +7386,16 @@ Sema::ActOnExplicitInstantiation(Scope *S,
       }
     }
 
+    // Set the template specialization kind. Make sure it is set before
+    // instantiating the members which will trigger ASTConsumer callbacks.
+    Specialization->setTemplateSpecializationKind(TSK);
     InstantiateClassTemplateSpecializationMembers(TemplateNameLoc, Def, TSK);
+  } else {
+
+    // Set the template specialization kind.
+    Specialization->setTemplateSpecializationKind(TSK);
   }
 
-  // Set the template specialization kind.
-  Specialization->setTemplateSpecializationKind(TSK);
   return Specialization;
 }
 
index 37b14a2..d42b4b2 100644 (file)
@@ -15,9 +15,19 @@ void tfoo() {}
 void tfoo<int>() {}
 }
 
+namespace crash1 {
+template<typename T> class A {
+  A(A &) = delete;
+  void meth();
+};
+template <> void A<int>::meth();
+template class A<int>;
+}
+
 // RUN: c-index-test -index-file %s > %t
 // RUN: FileCheck %s -input-file=%t
 
 // CHECK: [indexDeclaration]: kind: type-alias | name: MyTypeAlias | {{.*}} | loc: 1:7
 // CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 11:8
 // CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 15:6
+// CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 23:26