Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / arm / neon-vset_lanes64.c
blob10113932711ec3ec4a456294a4f16fade60ff972
1 /* Test the `vset_lane_s64' ARM Neon intrinsic. */
3 /* { dg-do run } */
4 /* { dg-require-effective-target arm_neon_hw } */
5 /* { dg-options "-O0" } */
6 /* { dg-add-options arm_neon } */
8 #include "arm_neon.h"
9 #include <stdlib.h>
11 int main (void)
13 int64x1_t out_int64x1_t = 0;
14 int64_t arg0_int64_t = 0xf00f00f00LL;
15 int64x1_t arg1_int64x1_t = (int64x1_t) 0xdeadbeefbadf00dLL;
17 out_int64x1_t = vset_lane_s64 (arg0_int64_t, arg1_int64x1_t, 0);
18 if ((int64_t)out_int64x1_t != arg0_int64_t)
19 abort();
20 return 0;