mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
9 lines
104 B
LLVM
9 lines
104 B
LLVM
|
; RUN: llvm-as < %s | opt -adce -disable-output
|
||
|
|
||
|
int %main() {
|
||
|
br label %loop
|
||
|
|
||
|
loop:
|
||
|
br label %loop
|
||
|
}
|