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-05-11-PHIRegAllocBug.ll
blob
1d9ba77145b54b704ff3e2e38339a1435d70138b
1
; RUN: llvm-upgrade < %s | llvm-as -f -o %t.bc
2
; RUN: lli %t.bc > /dev/null
3
4
target endian = little
5
target pointersize = 32
6
7
implementation
8
9
int %main() {
10
entry:
11
br label %endif
12
then:
13
br label %endif
14
endif:
15
%x = phi uint [ 4, %entry ], [ 27, %then ]
16
%result = phi int [ 32, %then ], [ 0, %entry ]
17
ret int 0
18
}