1 /* Test the `vset_lane_s8' ARM Neon intrinsic. */
4 /* { dg-require-effective-target arm_neon_hw } */
5 /* { dg-options "-O0" } */
6 /* { dg-add-options arm_neon } */
12 int8x8_t x
= { 1, 2, 3, 4, 5, 6, 7, 8 };
13 int8x8_t y
= { 1, 2, 3, 16, 5, 6, 7, 8 };
17 x
= vset_lane_s8 (16, x
, 3);
18 if (memcmp (&x
, &y
, sizeof (x
)) != 0)