mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
9 lines
151 B
LLVM
9 lines
151 B
LLVM
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2
|
||
|
|
||
|
declare void @bar(i64 %x, i64 %y)
|
||
|
|
||
|
define void @foo() {
|
||
|
call void @bar(i64 2, i64 3)
|
||
|
ret void
|
||
|
}
|