repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
llvm
/
test
/
ExecutionEngine
/
MCJIT
/
simpletest.ll
blob
8f944a412c063d7d161ee42dc137964f1fe8b211
1
; RUN: %lli -jit-kind=mcjit %s > /dev/null
2
; RUN: %lli %s > /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