llvm-6502/test/CodeGen/SPARC/2011-01-11-Call.ll

14 lines
213 B
LLVM
Raw Normal View History

; 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(...)