* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vmovntps-256-1.c
blob9f79403f4f9f963572371077fde239332a8f4876
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))
9 test (float *p, __m256 s)
11 return _mm256_stream_ps (p, s);
14 static void
15 avx_test (void)
17 union256 u;
18 float e[8] __attribute__ ((aligned(32)));
20 u.x = _mm256_set_ps (24.43, 68.346, -43.35, 546.46,
21 46.9, -2.78, 82.9, -0.4);
22 test (e, u.x);
24 if (check_union256 (u, e))
25 abort ();