OSDN Git Service

PR middle-end/29274
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / avx-vmovapd-256-2.c
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
4
5 #include "avx-check.h"
6
7 static void
8 __attribute__((noinline, unused))
9 test (double *e, __m256d a)
10 {
11   return _mm256_store_pd (e, a);
12 }
13
14 void static
15 avx_test (void)
16 {
17   union256d u;
18   double e [4] __attribute__ ((aligned (8))) = {0.0};
19
20   u.x = _mm256_set_pd (39578.467285, 7856.342941, 85632.783567, 47563.234215);
21
22   test (e, u.x);
23
24   if (check_union256d (u, e))
25     abort ();
26 }