mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
12 lines
126 B
LLVM
12 lines
126 B
LLVM
|
|
||
|
|
||
|
int %func(int %i) {
|
||
|
ret int %i
|
||
|
}
|
||
|
|
||
|
int %main(int %argc) {
|
||
|
%X = call int %func(int 7)
|
||
|
%Y = add int %X, %argc
|
||
|
ret int %Y
|
||
|
}
|