* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-set-v8sf-1.c
blob6f1ba71019c00042c7aad1f15b1a7e1bdd1b0666
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 *v)
11 return _mm256_set_ps (v[7], v[6], v[5], v[4],
12 v[3], v[2], v[1], v[0]);
15 static void
16 avx_test (void)
18 float v[8] = { -3, 2, 1, 9, 23, -173, -13, 69 };
19 union256 u;
21 u.x = foo (v);
22 if (check_union256 (u, v))
23 abort ();