mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
8 lines
88 B
LLVM
8 lines
88 B
LLVM
|
; test phi node
|
||
|
int %main() {
|
||
|
br label %Test
|
||
|
Test:
|
||
|
%X = phi int [7, %0]
|
||
|
ret int %X
|
||
|
}
|