diff options
-rw-r--r-- | test/CodeGen/arm-vector-arguments.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/arm-vector-arguments.c b/test/CodeGen/arm-vector-arguments.c index a5d895edcc..c5ac0a7ad1 100644 --- a/test/CodeGen/arm-vector-arguments.c +++ b/test/CodeGen/arm-vector-arguments.c @@ -8,9 +8,9 @@ #include <arm_neon.h> -// temporarily skip check: define void @f0(%struct.__simd128_int8_t* sret %agg.result, <16 x i8> %{{.*}}, <16 x i8> %{{.*}}) -int8x16_t f0(int8x16_t a0, int8x16_t a1) { - return vzipq_s8(a0, a1).val[0]; +// CHECK: define void @f0(%struct.int8x16x2_t* sret %agg.result, <16 x i8> %{{.*}}, <16 x i8> %{{.*}}) +int8x16x2_t f0(int8x16_t a0, int8x16_t a1) { + return vzipq_s8(a0, a1); } // Test direct vector passing. |