45 lines
767 B
C
45 lines
767 B
C
|
/* { dg-do run } */
|
||
|
/* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
|
||
|
/* { dg-require-effective-target p8vector_hw } */
|
||
|
|
||
|
#ifndef CHECK_H
|
||
|
#define CHECK_H "sse2-check.h"
|
||
|
#endif
|
||
|
|
||
|
#include CHECK_H
|
||
|
|
||
|
#ifndef TEST
|
||
|
#define TEST sse2_test_psllw_2
|
||
|
#endif
|
||
|
|
||
|
#include <emmintrin.h>
|
||
|
|
||
|
static __m128i
|
||
|
__attribute__((noinline, unused))
|
||
|
test (__m128i s1, __m128i c)
|
||
|
{
|
||
|
return _mm_sll_epi16 (s1, c);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
TEST (void)
|
||
|
{
|
||
|
union128i_w u, s;
|
||
|
union128i_q c;
|
||
|
short e[8] = {0};
|
||
|
int i;
|
||
|
|
||
|
s.x = _mm_set_epi16 (1, 2, 3, 4, 5, 6, 0x7000, 0x9000);
|
||
|
c.x = _mm_set_epi64x (12, 13);
|
||
|
|
||
|
__asm("" : "+v"(s.x), "+v"(c.x));
|
||
|
u.x = test (s.x, c.x);
|
||
|
|
||
|
if (c.a[0] < 16)
|
||
|
for (i = 0; i < 8; i++)
|
||
|
e[i] = s.a[i] << c.a[0];
|
||
|
|
||
|
if (check_union128i_w (u, e))
|
||
|
abort ();
|
||
|
}
|