PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-set-v8sf-3.c
blob96f5e3318ec50619e2e0ff5a606a403b6944a85b
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 static __m256
8 __attribute__((noinline))
9 foo (float x)
11 return _mm256_set_ps (x, x, x, x, x, x, x, x);
14 static void
15 avx_test (void)
17 float e = 34.5;
18 float v[8];
19 union256 u;
20 int i;
22 for (i = 0; i < ARRAY_SIZE (v); i++)
23 v[i] = e;
24 u.x = foo (e);
25 if (check_union256 (u, v))
26 abort ();