PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vmovups-256-2.c
blobc1781979a05a3e32d42617703046021c29c0708f
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 static void
8 __attribute__((noinline, unused))
9 test (float *e, __m256 a)
11 return _mm256_storeu_ps (e, a);
14 void static
15 avx_test (void)
17 union256 u;
18 float e [8] = {0.0};
20 u.x = _mm256_set_ps (1.17, 24567.16, 3.15, 4567.14, 5.13, 65467.12, 788.11, 8.9);
22 test (e, u.x);
24 if (check_union256 (u, e))
25 abort ();