2 /* { dg-options "-O3 -mvsx -Wno-psabi" } */
3 /* { dg-additional-options "-mdejagnu-cpu=power8" { target { ! has_arch_pwr8 } } } */
4 /* { dg-require-effective-target p8vector_hw } */
7 #define CHECK_H "sse2-check.h"
13 #define TEST sse2_test_unpcklpd_1
16 #include <emmintrin.h>
19 __attribute__((noinline
, unused
))
20 test (__m128d s1
, __m128d s2
)
22 __asm("" : "+v"(s1
), "+v"(s2
));
23 return _mm_unpacklo_pd (s1
, s2
);
32 s1
.x
= _mm_set_pd (2134.3343,1234.635654);
33 s2
.x
= _mm_set_pd (41124.234,2344.2354);
34 u
.x
= test (s1
.x
, s2
.x
);
39 if (check_union128d (u
, e
))