1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/Transforms/TailCallElim/trivial_codegen_tailcall.ll
2009-09-08 22:34:10 +00:00

12 lines
148 B
LLVM

; RUN: opt %s -tailcallelim -S | \
; RUN: grep {tail call void @foo}
declare void @foo()
define void @bar() {
call void @foo( )
ret void
}