2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vmovupd-256-1.c
blob8683a78daa60c2b9b0706e4d8f56b794239b5b4e
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 static __m256d
8 __attribute__((noinline, unused))
9 test (double *e)
11 return _mm256_loadu_pd (e);
14 void static
15 avx_test (void)
17 union256d u;
18 double e [4] = {41124.234,2344.2354,8653.65635,856.43576};
20 u.x = test (e);
22 if (check_union256d (u, e))
23 abort ();