mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
8ac346c316
llvm-svn: 48137
12 lines
168 B
LLVM
12 lines
168 B
LLVM
; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | \
|
|
; RUN: grep {tail call void @foo}
|
|
|
|
|
|
declare void @foo()
|
|
|
|
define void @bar() {
|
|
call void @foo( )
|
|
ret void
|
|
}
|
|
|