summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/vld1.ll
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-09-23 23:42:37 +0000
committerBob Wilson <bob.wilson@apple.com>2010-09-23 23:42:37 +0000
commit2a6e6161422154ea44f9e653e2d0bbfc3942af2b (patch)
tree64b52802ffcff0e3267ff1cab2cd5aebdf8568b8 /test/CodeGen/ARM/vld1.ll
parent453900814e5245fd823b2b24ee9da9b5e8b4bfc4 (diff)
downloadllvm-2a6e6161422154ea44f9e653e2d0bbfc3942af2b.tar.gz
llvm-2a6e6161422154ea44f9e653e2d0bbfc3942af2b.tar.bz2
llvm-2a6e6161422154ea44f9e653e2d0bbfc3942af2b.tar.xz
Set alignment operand for NEON VST instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/vld1.ll')
-rw-r--r--test/CodeGen/ARM/vld1.ll9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/vld1.ll b/test/CodeGen/ARM/vld1.ll
index 26543261c1..2800475b2f 100644
--- a/test/CodeGen/ARM/vld1.ll
+++ b/test/CodeGen/ARM/vld1.ll
@@ -43,16 +43,17 @@ define <1 x i64> @vld1i64(i64* %A) nounwind {
define <16 x i8> @vld1Qi8(i8* %A) nounwind {
;CHECK: vld1Qi8:
;Check the alignment value. Max for this instruction is 128 bits:
-;CHECK: vld1.8 {d0, d1}, [r0, :128]
- %tmp1 = call <16 x i8> @llvm.arm.neon.vld1.v16i8(i8* %A, i32 32)
+;CHECK: vld1.8 {d0, d1}, [r0, :64]
+ %tmp1 = call <16 x i8> @llvm.arm.neon.vld1.v16i8(i8* %A, i32 8)
ret <16 x i8> %tmp1
}
define <8 x i16> @vld1Qi16(i16* %A) nounwind {
;CHECK: vld1Qi16:
-;CHECK: vld1.16
+;Check the alignment value. Max for this instruction is 128 bits:
+;CHECK: vld1.16 {d0, d1}, [r0, :128]
%tmp0 = bitcast i16* %A to i8*
- %tmp1 = call <8 x i16> @llvm.arm.neon.vld1.v8i16(i8* %tmp0, i32 1)
+ %tmp1 = call <8 x i16> @llvm.arm.neon.vld1.v8i16(i8* %tmp0, i32 32)
ret <8 x i16> %tmp1
}