summaryrefslogtreecommitdiff
path: root/test/CodeGen/SPARC/2011-01-11-Call.ll
blob: 7350e9232428946e6c696fa98ebf2e6566b630c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; 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(...)