OSDN Git Service

PR middle-end/44071
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / avx-set-v8si-1.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 __m256i
8 __attribute__((noinline))
9 foo (int *v)
10 {
11   return _mm256_set_epi32 (v[7], v[6], v[5], v[4],
12                            v[3], v[2], v[1], v[0]);
13 }
14
15 static void
16 avx_test (void)
17 {
18   int v[8]
19     = { 19832468, 6576856, 8723467, 234566,
20         786784, 645245, 948773, 1234 };
21   union256i_d u;
22
23   u.x = foo (v);
24   if (check_union256i_d (u, v))
25     abort ();
26 }