diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-30 16:37:48 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-30 16:37:48 +0000 |
commit | 0e202b95c4fcdf87f330cb4c1df0916be94f0556 (patch) | |
tree | eb3f4971a67ad1fa7616cf45f42ec566b4122f08 /llvm/unittests/IR/IRBuilderTest.cpp | |
parent | bcc4f121a33bcfdb2b367737e49fcec4d03a94ef (diff) | |
download | bcm5719-llvm-0e202b95c4fcdf87f330cb4c1df0916be94f0556.tar.gz bcm5719-llvm-0e202b95c4fcdf87f330cb4c1df0916be94f0556.zip |
Verifier: Add operand checks for MDLexicalBlock
Add operand checks for `MDLexicalBlock` and `MDLexicalBlockFile`. Like
`MDLocalVariable` and `MDLocation`, these nodes always require a scope.
There was no test bitrot to fix here (just updated the serialization
tests in test/Assembler/mdlexicalblock.ll).
llvm-svn: 233561
Diffstat (limited to 'llvm/unittests/IR/IRBuilderTest.cpp')
-rw-r--r-- | llvm/unittests/IR/IRBuilderTest.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/unittests/IR/IRBuilderTest.cpp b/llvm/unittests/IR/IRBuilderTest.cpp index ca378a37cd5..3901fb85434 100644 --- a/llvm/unittests/IR/IRBuilderTest.cpp +++ b/llvm/unittests/IR/IRBuilderTest.cpp @@ -299,7 +299,9 @@ TEST_F(IRBuilderTest, DIBuilder) { false, true, 1, 0, true, F); EXPECT_TRUE(SP.Verify()); AllocaInst *I = Builder.CreateAlloca(Builder.getInt8Ty()); - auto BadScope = DIB.createLexicalBlockFile(DIDescriptor(), File, 0); + auto BarSP = DIB.createFunction(CU, "bar", "", File, 1, Type, false, true, 1, + 0, true, nullptr); + auto BadScope = DIB.createLexicalBlockFile(BarSP, File, 0); I->setDebugLoc(DebugLoc::get(2, 0, BadScope)); EXPECT_FALSE(SP.Verify()); DIB.finalize(); |