mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
9 lines
125 B
LLVM
9 lines
125 B
LLVM
|
; RUN: llvm-as < %s | opt -instcombine -disable-output
|
||
|
|
||
|
int %test() {
|
||
|
ret int 0
|
||
|
Loop:
|
||
|
%X = add int %X, 1
|
||
|
br label %Loop
|
||
|
}
|