mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-06 11:06:50 +00:00
9 lines
128 B
LLVM
9 lines
128 B
LLVM
|
int %main() {
|
||
|
br label %Loop
|
||
|
Loop:
|
||
|
%X = phi int [0, %0], [1, %Loop]
|
||
|
br bool true, label %Out, label %Loop
|
||
|
Out:
|
||
|
ret int %X
|
||
|
}
|