mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b8756b00cd
for ARM. Patch by Sandeep Patel. llvm-svn: 69371
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
|
|
}
|