]> granicus.if.org Git - clang/commitdiff
Fix typo.
authorDevang Patel <dpatel@apple.com>
Tue, 5 Apr 2011 20:28:21 +0000 (20:28 +0000)
committerDevang Patel <dpatel@apple.com>
Tue, 5 Apr 2011 20:28:21 +0000 (20:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128921 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDebugInfo.cpp
lib/CodeGen/CGDecl.cpp

index 24212967a343613bfe661206b095f942283539a9..5ae38749a8daec535a8e759ff4b6db194723e9bd 100644 (file)
@@ -1534,6 +1534,10 @@ void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, QualType FnType,
   FnBeginRegionCount.push_back(RegionStack.size());
 
   const Decl *D = GD.getDecl();
+  if (const ClassTemplateSpecializationDecl *TSpecial
+      = dyn_cast<ClassTemplateSpecializationDecl>(D))
+    assert (0 && "Got one!");
+
   unsigned Flags = 0;
   llvm::DIFile Unit = getOrCreateFile(CurLoc);
   llvm::DIDescriptor FDContext(Unit);
index 13349b020e57b22158476350a46ba1735c05cc15..9b400cbe2aa1fb693356a8f5810a34b0033f50ea 100644 (file)
@@ -69,7 +69,7 @@ void CodeGenFunction::EmitDecl(const Decl &D) {
   case Decl::Friend:
   case Decl::FriendTemplate:
   case Decl::Block:
-    assert(0 && "Declaration not should not be in declstmts!");
+    assert(0 && "Declaration should not be in declstmts!");
   case Decl::Function:  // void X();
   case Decl::Record:    // struct/union/class X;
   case Decl::Enum:      // enum X;