repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Alignment][NFC] Migrate Instructions to Align
[llvm-core.git]
/
test
/
ExecutionEngine
/
Interpreter
/
call-no-args.ll
blob
bd1f906fb04e64346822d6a8ff34b0cf029b1590
1
; RUN: %lli -force-interpreter %s
2
3
declare void @exit(i32)
4
declare i32 @rand()
5
6
define i32 @main() {
7
%ret = call i32 @rand()
8
call void @exit(i32 0)
9
ret i32 %ret
10
}