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_psraw_2
16 #include <emmintrin.h>
19 __attribute__((noinline
, unused
))
20 test (__m128i s1
, __m128i c
)
22 return _mm_sra_epi16 (s1
, c
);
33 s
.x
= _mm_set_epi16 (1, -2, 3, 4, 5, 6, -0x7000, 0x9000);
34 c
.x
= _mm_set_epi64x (12, 13);
36 __asm("" : "+v"(s
.x
), "+v"(c
.x
));
37 u
.x
= test (s
.x
, c
.x
);
40 for (i
= 0; i
< 8; i
++)
41 e
[i
] = s
.a
[i
] >> c
.a
[0];
43 if (check_union128i_w (u
, e
))