mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
14 lines
213 B
LLVM
14 lines
213 B
LLVM
|
; RUN: llc -march=sparc -O0 <%s
|
||
|
|
||
|
define void @test() nounwind {
|
||
|
entry:
|
||
|
%0 = tail call i32 (...)* @foo() nounwind
|
||
|
tail call void (...)* @bar() nounwind
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare i32 @foo(...)
|
||
|
|
||
|
declare void @bar(...)
|
||
|
|