mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
bb2cd15df7
llvm-svn: 17536
12 lines
188 B
LLVM
12 lines
188 B
LLVM
; RUN: llvm-as -f %s -o %t.bc
|
|
; RUN: lli %t.bc > /dev/null
|
|
|
|
int %main() {
|
|
br label %Loop
|
|
Loop:
|
|
%X = phi int [0, %0], [1, %Loop]
|
|
br bool true, label %Out, label %Loop
|
|
Out:
|
|
ret int %X
|
|
}
|