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
Inliner pass header file was moved.
[llvm-complete.git]
/
test
/
ExecutionEngine
/
2003-01-04-PhiTest.ll
blob
45af8300a642e2908481bf1c171cc83b56f2791a
1
; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2
; RUN: lli %t.bc > /dev/null
3
4
int %main() {
5
br label %Loop
6
Loop:
7
%X = phi int [0, %0], [1, %Loop]
8
br bool true, label %Out, label %Loop
9
Out:
10
ret int %X
11
}