]> granicus.if.org Git - clang/commitdiff
ARM NEON: fix tests after r202137
authorTim Northover <tnorthover@apple.com>
Tue, 25 Feb 2014 11:48:25 +0000 (11:48 +0000)
committerTim Northover <tnorthover@apple.com>
Tue, 25 Feb 2014 11:48:25 +0000 (11:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202143 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/arm_neon_intrinsics.c

index d7473ed2bcfa60cdfd13410f6dd98fa48695678b..9ec34516cc175f0a146544fa06eb9ca088b31b35 100644 (file)
@@ -1888,7 +1888,7 @@ poly16x4_t test_vdup_n_p16(poly16_t a) {
 }
 
 // CHECK: test_vdup_n_f16
-// CHECK: vdup.16
+// CHECK: vld1.16 {{{d[0-9]+\[\]}}}
 float16x4_t test_vdup_n_f16(float16_t *a) {
   return vdup_n_f16(*a);
 }
@@ -1948,7 +1948,7 @@ poly16x8_t test_vdupq_n_p16(poly16_t a) {
 }
 
 // CHECK: test_vdupq_n_f16
-// CHECK: vdup.16
+// CHECK: vld1.16 {{{d[0-9]+\[\], d[0-9]+\[\]}}}
 float16x8_t test_vdupq_n_f16(float16_t *a) {
   return vdupq_n_f16(*a);
 }
@@ -4881,7 +4881,7 @@ poly16x4_t test_vmov_n_p16(poly16_t a) {
 }
 
 // CHECK: test_vmov_n_f16
-// CHECK: vdup.16
+// CHECK: vld1.16 {{{d[0-9]+\[\]}}}
 float16x4_t test_vmov_n_f16(float16_t *a) {
   return vmov_n_f16(*a);
 }
@@ -4941,7 +4941,7 @@ poly16x8_t test_vmovq_n_p16(poly16_t a) {
 }
 
 // CHECK: test_vmovq_n_f16
-// CHECK: vdup.16
+// CHECK: vld1.16 {{{d[0-9]+\[\], d[0-9]+\[\]}}}
 float16x8_t test_vmovq_n_f16(float16_t *a) {
   return vmovq_n_f16(*a);
 }