You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
412 B
17 lines
412 B
; 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
|