repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-complete.git]
/
test
/
ExecutionEngine
/
OrcMCJIT
/
test-branch.ll
blob
b3ef86a193ef882ddf78a8d31de108612e6645cb
1
; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
2
3
; test unconditional branch
4
define i32 @main() {
5
br label %Test
6
Test: ; preds = %Test, %0
7
%X = icmp eq i32 0, 4 ; <i1> [#uses=1]
8
br i1 %X, label %Test, label %Label
9
Label: ; preds = %Test
10
ret i32 0
11
}
12