1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Transforms/TailCallElim/trivial_codegen_tailcall.ll

12 lines
149 B
LLVM
Raw Normal View History

2005-05-10 02:33:36 +02:00
; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | grep 'tail call void %foo'
declare void %foo()
void %bar() {
call void %foo()
ret void
}