diff options
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 240343dd82..f326be2769 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -59,6 +59,8 @@ CGDebugInfo::CGDebugInfo(CodeGenModule *m) CGDebugInfo::~CGDebugInfo() { + assert(RegionStack.empty() && "Region stack mismatch, stack not empty!"); + delete SR; // Free CompileUnitCache. @@ -111,7 +113,8 @@ CGDebugInfo::~CGDebugInfo() } void CGDebugInfo::setLocation(SourceLocation loc) { - CurLoc = M->getContext().getSourceManager().getLogicalLoc(loc); + if (loc.isValid()) + CurLoc = M->getContext().getSourceManager().getLogicalLoc(loc); } /// getCastValueFor - Return a llvm representation for a given debug information @@ -711,6 +714,7 @@ void CGDebugInfo::EmitRegionEnd(llvm::Function *Fn, llvm::IRBuilder<> &Builder) llvm::DebugInfoDesc *DID = RegionStack.back(); Builder.CreateCall(RegionEndFn, getCastValueFor(DID), ""); RegionStack.pop_back(); + // FIXME: Should be freeing here? } /// EmitDeclare - Emit local variable declaration debug info. |