PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / arm / neon-vsubs64.c
blob23947004127918b0c328f2c3e5ca2b8ff3f36de4
1 /* Test the `vsub_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 int64x1_t arg0_int64x1_t = (int64x1_t)0xdeadbeefdeadbeefLL;
15 int64x1_t arg1_int64x1_t = (int64x1_t)0x0000beefdead0000LL;
17 out_int64x1_t = vsub_s64 (arg0_int64x1_t, arg1_int64x1_t);
18 if (out_int64x1_t != (int64x1_t)0xdead00000000beefLL)
19 abort();
20 return 0;