From: Adrian Prantl Date: Wed, 21 Jan 2015 18:32:56 +0000 (+0000) Subject: Let subprograms with instructions without parent scopes fail the X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1292e24d0e10720b3bac7506398f96c2a2ebed6c;p=platform%2Fupstream%2Fllvm.git Let subprograms with instructions without parent scopes fail the verification. Tested via a unit test. Follow-up to r226616. llvm-svn: 226684 --- diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index 5dff50d..76836fd 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -536,7 +536,8 @@ bool DISubprogram::Verify() const { Scope = D.isLexicalBlockFile() ? D.getScope() : DebugLoc::getFromDILexicalBlock(Scope).getScope(); - assert(Scope && "lexical block file has no scope"); + if (!Scope) + return false; } if (!DISubprogram(Scope).describes(F)) return false; diff --git a/llvm/unittests/IR/IRBuilderTest.cpp b/llvm/unittests/IR/IRBuilderTest.cpp index df5c840..c8670f2 100644 --- a/llvm/unittests/IR/IRBuilderTest.cpp +++ b/llvm/unittests/IR/IRBuilderTest.cpp @@ -10,6 +10,7 @@ #include "llvm/IR/IRBuilder.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/DataLayout.h" +#include "llvm/IR/DIBuilder.h" #include "llvm/IR/Function.h" #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/LLVMContext.h" @@ -287,5 +288,21 @@ TEST_F(IRBuilderTest, RAIIHelpersTest) { EXPECT_EQ(BB, Builder.GetInsertBlock()); } +TEST_F(IRBuilderTest, DIBuilder) { + IRBuilder<> Builder(BB); + DIBuilder DIB(*M); + auto File = DIB.createFile("F.CBL", "/"); + auto CU = DIB.createCompileUnit(dwarf::DW_LANG_Cobol74, "F.CBL", "/", + "llvm-cobol74", true, "", 0); + auto Type = DIB.createSubroutineType(File, DIB.getOrCreateTypeArray({})); + auto SP = DIB.createFunction(CU, "foo", "", File, 1, Type, + false, true, 1, 0, true, F); + EXPECT_TRUE(SP.Verify()); + AllocaInst *I = Builder.CreateAlloca(Builder.getInt8Ty()); + auto BadScope = DIB.createLexicalBlockFile(DIDescriptor(), File, 0); + I->setDebugLoc(DebugLoc::get(2, 0, BadScope)); + EXPECT_FALSE(SP.Verify()); +} + }