mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
c1064620ef
llvm-svn: 21837
12 lines
149 B
LLVM
12 lines
149 B
LLVM
; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | grep 'tail call void %foo'
|
|
|
|
declare void %foo()
|
|
|
|
|
|
void %bar() {
|
|
call void %foo()
|
|
ret void
|
|
}
|
|
|
|
|