mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 05:29:23 +00:00
7 lines
77 B
LLVM
7 lines
77 B
LLVM
|
; test unconditional branch
|
||
|
int %main() {
|
||
|
br label %Test
|
||
|
Test:
|
||
|
ret int 0
|
||
|
}
|