r202143 - ARM NEON: fix tests after r202137

Tim Northover tnorthover at apple.com
Tue Feb 25 03:48:25 PST 2014


Author: tnorthover
Date: Tue Feb 25 05:48:25 2014
New Revision: 202143

URL: http://llvm.org/viewvc/llvm-project?rev=202143&view=rev
Log:
ARM NEON: fix tests after r202137

Modified:
    cfe/trunk/test/CodeGen/arm_neon_intrinsics.c

Modified: cfe/trunk/test/CodeGen/arm_neon_intrinsics.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/arm_neon_intrinsics.c?rev=202143&r1=202142&r2=202143&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/arm_neon_intrinsics.c (original)
+++ cfe/trunk/test/CodeGen/arm_neon_intrinsics.c Tue Feb 25 05:48:25 2014
@@ -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);
 }





More information about the cfe-commits mailing list