| Diana Picus | bae1d89 | 2016-06-14 07:30:20 +0000 | [diff] [blame] | 1 | ; RUN: not llc -mtriple=arm-eabi -mcpu=cortex-a8 %s -o - 2>&1 | FileCheck %s |
| Bill Wendling | 5def891 | 2012-09-26 06:16:18 +0000 | [diff] [blame] | 2 | |
| 3 | ; Check for error message: |
| 4 | ; CHECK: scalar-to-vector conversion failed, possible invalid constraint for vector type |
| Diana Picus | bae1d89 | 2016-06-14 07:30:20 +0000 | [diff] [blame] | 5 | ; CHECK: scalar-to-vector conversion failed, possible invalid constraint for vector type |
| Bill Wendling | 5def891 | 2012-09-26 06:16:18 +0000 | [diff] [blame] | 6 | |
| 7 | define hidden void @f(i32* %corr, i32 %order) nounwind ssp { |
| Diana Picus | bae1d89 | 2016-06-14 07:30:20 +0000 | [diff] [blame] | 8 | tail call void asm sideeffect "vst1.s32 { ${1:q}, ${2:q} }, [$0]", "r,{q0},{q1}"(i32* %corr, <2 x i64>* undef, i32 %order) nounwind, !srcloc !0 |
| Bill Wendling | 5def891 | 2012-09-26 06:16:18 +0000 | [diff] [blame] | 9 | ret void |
| 10 | } |
| 11 | |
| Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 12 | !0 = !{i32 257} |