Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / i386 / avx-set-v4di-2.c
blobf3dc138a8c26ccb73e2de77f8d49ae37850d0543
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 (long long x1, long long x2, long long x3, long long x4)
11 return _mm256_set_epi64x (x1, x2, x3, x4);
14 static void
15 avx_test (void)
17 long long v[4]
18 = { 0x12e9e94645ad8LL, 0x851c0b39446LL,
19 0x786784645245LL, 0x9487731234LL };
20 union256i_q u;
22 u.x = foo (v[3], v[2], v[1], v[0]);
23 if (check_union256i_q (u, v))
24 abort ();