PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx-vextractf128-256-1.c
blob4919d640f0fb85bd68afdb4617141b8390b9e183
1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx" } */
5 #include "avx-check.h"
7 #ifndef OFFSET
8 #define OFFSET 1
9 #endif
11 #if OFFSET < 0 || OFFSET > 1
12 #error OFFSET must be within [0..1]
13 #endif
15 void static
16 avx_test (void)
18 union256d s1;
19 union128d u;
20 double e [2];
22 s1.x = _mm256_set_pd (2134.3343,1234.635654,453.345635,54646.464356);
23 u.x = _mm256_extractf128_pd (s1.x, OFFSET);
25 __builtin_memcpy (e, s1.a + OFFSET * 2, sizeof e);
27 if (check_union128d (u, e))
28 abort ();