mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 23:05:31 +00:00
1293130f4f
scalar-to-vector conversion that we cannot handle. For instance, when an invalid constraint is used in an inline asm statement. <rdar://problem/12284092> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164657 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
419 B
LLVM
12 lines
419 B
LLVM
; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
|
|
|
|
; Check for error message:
|
|
; CHECK: non-trivial scalar-to-vector conversion, possible invalid constraint for vector type
|
|
|
|
define void @f() nounwind ssp {
|
|
%1 = call { <2 x i64>, <2 x i64>, <2 x i64>, <2 x i64> } asm "vldm $4, { ${0:q}, ${1:q}, ${2:q}, ${3:q} }", "=r,=r,=r,=r,r"(i64* undef) nounwind, !srcloc !0
|
|
ret void
|
|
}
|
|
|
|
!0 = metadata !{i32 318437}
|