repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git]
/
test
/
CodeGen
/
Generic
/
call-ret0.ll
blob
7ab966ba90701a86a5664614646853af20e08aab
1
; RUN: llvm-as < %s | llc
2
define i32 @foo(i32 %x) {
3
ret i32 %x
4
}
5
6
define i32 @main() {
7
%r = call i32 @foo( i32 0 ) ; <i32> [#uses=1]
8
ret i32 %r
9
}
10