mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
17 lines
251 B
LLVM
17 lines
251 B
LLVM
|
; Testcase distilled from 256.bzip2.
|
||
|
|
||
|
target endian = little
|
||
|
target pointersize = 32
|
||
|
|
||
|
int %main() {
|
||
|
entry:
|
||
|
%X = add int 1, -1
|
||
|
br label %Next
|
||
|
|
||
|
Next:
|
||
|
%A = phi int [ %X, %entry ]
|
||
|
%B = phi int [ %X, %entry ]
|
||
|
%C = phi int [ %X, %entry ]
|
||
|
ret int %C
|
||
|
}
|