diff options
Diffstat (limited to 'llvm/test/Transforms/TailCallElim/debugloc.ll')
-rw-r--r-- | llvm/test/Transforms/TailCallElim/debugloc.ll | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/Transforms/TailCallElim/debugloc.ll b/llvm/test/Transforms/TailCallElim/debugloc.ll deleted file mode 100644 index 412dd04b621..00000000000 --- a/llvm/test/Transforms/TailCallElim/debugloc.ll +++ /dev/null @@ -1,16 +0,0 @@ -; RUN: opt < %s -debugify -tailcallelim -S | FileCheck %s - -define void @foo() { -entry: -; CHECK-LABEL: entry: -; CHECK: br label %tailrecurse, !dbg ![[DbgLoc:[0-9]+]] - - call void @foo() ;; line 1 - ret void - -; CHECK-LABEL: tailrecurse: -; CHECK: br label %tailrecurse, !dbg ![[DbgLoc]] -} - -;; Make sure tailrecurse has the call instruction's DL -; CHECK: ![[DbgLoc]] = !DILocation(line: 1 |