1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/Inline/zero-cost.ll
2015-11-10 09:47:48 +00:00

18 lines
207 B
LLVM

; 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
}