mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
f18eb5887f
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@164662 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
433 B
LLVM
12 lines
433 B
LLVM
; RUN: llc < %s -march=arm -mcpu=cortex-a8 2>&1 | FileCheck %s
|
|
|
|
; Check for error message:
|
|
; CHECK: scalar-to-vector conversion failed, possible invalid constraint for vector type
|
|
|
|
define hidden void @f(i32* %corr, i32 %order) nounwind ssp {
|
|
tail call void asm sideeffect "vst1.s32 { ${1:q}, ${2:q} }, [$0]", "r,{q0},{q1}"(i32* %corr, <2 x i64>* undef, <2 x i64>* undef) nounwind, !srcloc !0
|
|
ret void
|
|
}
|
|
|
|
!0 = metadata !{i32 257}
|