projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[Orc] Revert 234815. Still haven't quite got this test figured out apparently.
[oota-llvm.git]
/
test
/
ExecutionEngine
/
mov64zext32.ll
1
; RUN: %lli %s > /dev/null
2
3
define i64 @foo() {
4
ret i64 42
5
}
6
7
define i32 @main() {
8
%val = call i64 @foo()
9
%is42 = icmp eq i64 %val, 42
10
br i1 %is42, label %good, label %bad
11
12
good:
13
ret i32 0
14
15
bad:
16
ret i32 1
17
}