1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-03 14:31:10 +00:00
2003-06-06 07:58:29 +00:00

10 lines
144 B
LLVM

; test unconditional branch
int %main() {
br label %Test
Test:
%X = seteq int 0, 4
br bool %X, label %Test, label %Label
Label:
ret int 0
}