repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
CodeGen
/
SPARC
/
2011-01-11-Call.ll
blob
7350e9232428946e6c696fa98ebf2e6566b630c8
1
; RUN: llc -march=sparc -O0 <%s
2
3
define void @test() nounwind {
4
entry:
5
%0 = tail call i32 (...)* @foo() nounwind
6
tail call void (...)* @bar() nounwind
7
ret void
8
}
9
10
declare i32 @foo(...)
11
12
declare void @bar(...)
13