mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
af1dabef35
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30767 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
183 B
LLVM
11 lines
183 B
LLVM
; RUN: llvm-as < %s | llc -march=arm
|
|
void %f() {
|
|
entry:
|
|
call void %g( int 1, int 2, int 3, int 4 )
|
|
call void %h()
|
|
ret void
|
|
}
|
|
|
|
declare void %g(int, int, int, int)
|
|
declare void %h()
|