[AArch64] SVE tests
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / sve / pack_fcvt_unsigned_1_run.c
blob7c54f1b3a5de430e252bf4e4e1099ea2c7f192bc
1 /* { dg-do run { target aarch64_sve_hw } } */
2 /* { dg-options "-O2 -ftree-vectorize" } */
4 #include "pack_fcvt_unsigned_1.c"
6 #define ARRAY_SIZE 157
8 #define VAL1 (i * 9584.3432)
10 int __attribute__ ((optimize (1)))
11 main (void)
13 static uint32_t array_dest[ARRAY_SIZE];
14 double array_source[ARRAY_SIZE];
16 for (int i = 0; i < ARRAY_SIZE; i++)
18 array_source[i] = VAL1;
19 asm volatile ("" ::: "memory");
22 pack_int_double_plus_7 (array_dest, array_source, ARRAY_SIZE);
23 for (int i = 0; i < ARRAY_SIZE; i++)
24 if (array_dest[i] != (uint32_t) VAL1 + 7)
25 __builtin_abort ();
27 return 0;