repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
zpu: wip eke out some simple instructions for load/store/add
[llvm/zpu.git]
/
test
/
ExecutionEngine
/
simpletest.ll
blob
53fb79c2c768831d761653f662c8ee020c37f794
1
; RUN: llvm-as %s -o %t.bc
2
; RUN: lli %t.bc > /dev/null
3
4
define i32 @bar() {
5
ret i32 0
6
}
7
8
define i32 @main() {
9
%r = call i32 @bar( ) ; <i32> [#uses=1]
10
ret i32 %r
11
}
12