mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
9 lines
149 B
LLVM
9 lines
149 B
LLVM
|
; RUN: llvm-as < %s | llc -march=arm
|
||
|
void %f() {
|
||
|
entry:
|
||
|
call void %g( int 1, int 2, int 3, int 4 )
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
declare void %g(int, int, int, int)
|