mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
9 lines
96 B
LLVM
9 lines
96 B
LLVM
|
int %foo(int %x) {
|
||
|
ret int 42
|
||
|
}
|
||
|
|
||
|
int %main() {
|
||
|
%r = call int %foo(int 15)
|
||
|
ret int %r
|
||
|
}
|