Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-set-v8si-1.c
blob7aa029ea5959eb84d17e7bdb953c50a5bce8b1f8
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 static __m256i
8 __attribute__((noinline))
9 foo (int *v)
11 return _mm256_set_epi32 (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 int v[8]
19 = { 19832468, 6576856, 8723467, 234566,
20 786784, 645245, 948773, 1234 };
21 union256i_d u;
23 u.x = foo (v);
24 if (check_union256i_d (u, v))
25 abort ();