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