blob: 8e7194a1963b7792f353152a7f58ecbb0c5f228a [file] [log] [blame]
; RUN: opt -inline -S %s | FileCheck %s
define void @f() {
entry:
tail call void @g()
unreachable
; CHECK-LABEL: @f
; CHECK-NOT: call
; CHECK: unreachable
}
define void @g() {
entry:
unreachable
}