OSDN Git Service

DebugInfo: Assert that all abstract scopes are subprograms, rather than conditionalizing.
authorDavid Blaikie <dblaikie@gmail.com>
Fri, 18 Jul 2014 22:26:59 +0000 (22:26 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Fri, 18 Jul 2014 22:26:59 +0000 (22:26 +0000)
There's nothing else these should ever be...

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

lib/CodeGen/AsmPrinter/DwarfDebug.cpp

index 8731c88..8064209 100644 (file)
@@ -1569,8 +1569,7 @@ void DwarfDebug::endFunction(const MachineFunction *MF) {
   // Construct abstract scopes.
   for (LexicalScope *AScope : LScopes.getAbstractScopesList()) {
     DISubprogram SP(AScope->getScopeNode());
-    if (!SP.isSubprogram())
-      continue;
+    assert(SP.isSubprogram());
     // Collect info for variables that were optimized out.
     DIArray Variables = SP.getVariables();
     for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) {