diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-06 19:49:39 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-04-06 19:49:39 +0000 |
commit | a5099dce6263405d72d19f3783156492e436d31f (patch) | |
tree | b2113541075bc3e904dc47815b091560c8d853b2 /llvm/unittests/IR/IRBuilderTest.cpp | |
parent | 62e93623548b0eed5be7a5aa3b49b09a1d775604 (diff) | |
download | bcm5719-llvm-a5099dce6263405d72d19f3783156492e436d31f.tar.gz bcm5719-llvm-a5099dce6263405d72d19f3783156492e436d31f.zip |
DebugInfo: Remove DIDescriptor::Verify()
Remove `DIDescriptor::Verify()` and the `Verify()`s from subclasses.
They had already been gutted, and just did an `isa<>` check.
In a couple of cases I've temporarily dropped the check entirely, but
subsequent commits are going to disallow conversions to the
`DIDescriptor`s directly from `MDNode`, so the checks will come back in
another form soon enough.
llvm-svn: 234201
Diffstat (limited to 'llvm/unittests/IR/IRBuilderTest.cpp')
-rw-r--r-- | llvm/unittests/IR/IRBuilderTest.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/unittests/IR/IRBuilderTest.cpp b/llvm/unittests/IR/IRBuilderTest.cpp index c721ef508bf..cf189b1fb11 100644 --- a/llvm/unittests/IR/IRBuilderTest.cpp +++ b/llvm/unittests/IR/IRBuilderTest.cpp @@ -296,9 +296,7 @@ TEST_F(IRBuilderTest, DIBuilder) { auto CU = DIB.createCompileUnit(dwarf::DW_LANG_Cobol74, "F.CBL", "/", "llvm-cobol74", true, "", 0); auto Type = DIB.createSubroutineType(File, DIB.getOrCreateTypeArray(None)); - auto SP = DIB.createFunction(CU, "foo", "", File, 1, Type, - false, true, 1, 0, true, F); - EXPECT_TRUE(SP.Verify()); + DIB.createFunction(CU, "foo", "", File, 1, Type, false, true, 1, 0, true, F); AllocaInst *I = Builder.CreateAlloca(Builder.getInt8Ty()); auto BarSP = DIB.createFunction(CU, "bar", "", File, 1, Type, false, true, 1, 0, true, nullptr); |