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-06-05-PHIBug.ll
blob
8c1aaba27df4e485e359e2afbcb630fcd761cd76
1
; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2
; RUN: lli %t.bc > /dev/null
3
4
; Testcase distilled from 256.bzip2.
5
6
target endian = little
7
target pointersize = 32
8
9
int %main() {
10
entry:
11
%X = add int 1, -1
12
br label %Next
13
14
Next:
15
%A = phi int [ %X, %entry ]
16
%B = phi int [ %X, %entry ]
17
%C = phi int [ %X, %entry ]
18
ret int %C
19
}