diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-04-24 03:47:37 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-04-24 03:47:37 +0000 |
commit | 08290fd4f39b58efa81aef0874dd055f8b81af53 (patch) | |
tree | 5570efa5babd6d50141e35ada1d8ff3f2c21ba2a /test/DebugInfo | |
parent | 522b700b9bdb32529b923cba196e0cd580267dfb (diff) |
Revert "Verifier: Verify that each inlinable callsite of a debug-info-bearing function"
This reverts commit r267320 while investigating an OpenMP buildbot failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo')
-rw-r--r-- | test/DebugInfo/X86/arange-and-stub.ll | 3 | ||||
-rw-r--r-- | test/DebugInfo/X86/dbg-declare-arg.ll | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/DebugInfo/X86/arange-and-stub.ll b/test/DebugInfo/X86/arange-and-stub.ll index 891429e3ef1..668ea9c3a0b 100644 --- a/test/DebugInfo/X86/arange-and-stub.ll +++ b/test/DebugInfo/X86/arange-and-stub.ll @@ -18,7 +18,7 @@ define void @foo() !dbg !4 { define void @bar() personality i8* bitcast (void ()* @foo to i8*) !dbg !9 { invoke void @foo() - to label %invoke.cont unwind label %lpad, !dbg !19 + to label %invoke.cont unwind label %lpad invoke.cont: ; preds = %0 ret void @@ -50,4 +50,3 @@ lpad: ; preds = %0 !16 = !DISubrange(count: 1) !17 = !{i32 2, !"Dwarf Version", i32 4} !18 = !{i32 2, !"Debug Info Version", i32 3} -!19 = !DILocation(line: 0, scope: !9) diff --git a/test/DebugInfo/X86/dbg-declare-arg.ll b/test/DebugInfo/X86/dbg-declare-arg.ll index 7fd6296c7ee..c2a652c7266 100644 --- a/test/DebugInfo/X86/dbg-declare-arg.ll +++ b/test/DebugInfo/X86/dbg-declare-arg.ll @@ -54,7 +54,7 @@ entry: store %class.A* %this, %class.A** %this.addr, align 8 call void @llvm.dbg.declare(metadata %class.A** %this.addr, metadata !43, metadata !DIExpression()), !dbg !44 %this1 = load %class.A*, %class.A** %this.addr - call void @_ZN1AD2Ev(%class.A* %this1), !dbg !53 + call void @_ZN1AD2Ev(%class.A* %this1) ret void, !dbg !45 } @@ -124,4 +124,3 @@ entry: !49 = distinct !DILexicalBlock(line: 2, column: 52, file: !51, scope: !25) !51 = !DIFile(filename: "a.cc", directory: "/private/tmp") !52 = !{i32 1, !"Debug Info Version", i32 3} -!53 = !DILocation(line: 0, scope: !22) |