PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vmovups-256-1.c
blob87d8409983a14e6efab7167c9d40dc3916910ae1
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, unused))
9 test (float *e)
11 return _mm256_loadu_ps (e);
14 void static
15 avx_test (void)
17 union256 u;
18 float e [8] = {24.43, 68.346, 43.35, 546.46, 46.79, 82.78, 82.7, 9.4};
20 u.x = test (e);
22 if (check_union256 (u, e))
23 abort ();