You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
424 B
12 lines
424 B
; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 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 = !{i32 318437}
|