diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2023-09-19 11:21:39 +0530 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2023-09-19 11:21:39 +0530 |
commit | 98c25cfc79a21886de7342fb563c4eb3c3d5f4e9 (patch) | |
tree | a78d45c2ac3ac6b5e3df194f7034ea48be570a32 /gcc | |
parent | 95d2ce05fb32e663bc7553438ccee7f4d4e36a35 (diff) | |
download | gcc-98c25cfc79a21886de7342fb563c4eb3c3d5f4e9.zip gcc-98c25cfc79a21886de7342fb563c4eb3c3d5f4e9.tar.gz gcc-98c25cfc79a21886de7342fb563c4eb3c3d5f4e9.tar.bz2 |
[testsuite][aarch64] Adjust vect_copy_lane_1.c for new code-gen.
gcc/testsuite/ChangeLog:
* gcc.target/aarch64/vect_copy_lane_1.c: Scan for zip1 instead
of ins for float32x2_t, int32x2_t and uint32x2_t tests.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/aarch64/vect_copy_lane_1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/aarch64/vect_copy_lane_1.c b/gcc/testsuite/gcc.target/aarch64/vect_copy_lane_1.c index 2848be5..811dc67 100644 --- a/gcc/testsuite/gcc.target/aarch64/vect_copy_lane_1.c +++ b/gcc/testsuite/gcc.target/aarch64/vect_copy_lane_1.c @@ -22,7 +22,7 @@ BUILD_TEST (uint16x4_t, uint16x4_t, , , u16, 3, 2) BUILD_TEST (float32x2_t, float32x2_t, , , f32, 1, 0) BUILD_TEST (int32x2_t, int32x2_t, , , s32, 1, 0) BUILD_TEST (uint32x2_t, uint32x2_t, , , u32, 1, 0) -/* { dg-final { scan-assembler-times "ins\\tv0.s\\\[1\\\], v1.s\\\[0\\\]" 3 } } */ +/* { dg-final { scan-assembler-times "zip1\\tv0.2s, v0.2s, v1.2s" 3 } } */ BUILD_TEST (int64x1_t, int64x1_t, , , s64, 0, 0) BUILD_TEST (uint64x1_t, uint64x1_t, , , u64, 0, 0) BUILD_TEST (float64x1_t, float64x1_t, , , f64, 0, 0) |