mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
16 lines
153 B
LLVM
16 lines
153 B
LLVM
|
|
||
|
%X = global int undef
|
||
|
|
||
|
implementation
|
||
|
|
||
|
declare int "atoi"(sbyte *)
|
||
|
|
||
|
int %test() {
|
||
|
ret int undef
|
||
|
}
|
||
|
|
||
|
int %test2() {
|
||
|
%X = add int undef, 1
|
||
|
ret int %X
|
||
|
}
|