* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-psrad-2.c
blob387f383f3dbd9c68c8ad6498b2d31b65e1705cbb
1 /* { dg-do run } */
2 /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
3 /* { dg-require-effective-target lp64 } */
4 /* { dg-require-effective-target p8vector_hw } */
6 #ifndef CHECK_H
7 #define CHECK_H "sse2-check.h"
8 #endif
10 #include CHECK_H
12 #ifndef TEST
13 #define TEST sse2_test_psrad_2
14 #endif
16 #include <emmintrin.h>
18 static __m128i
19 __attribute__((noinline, unused))
20 test (__m128i s1, __m128i count)
22 return _mm_sra_epi32 (s1, count);
25 static void
26 TEST (void)
28 union128i_d u, s;
29 union128i_q c;
30 int e[4] = {0};
31 int i;
33 s.x = _mm_set_epi32 (1, -2, 3, 4);
34 c.x = _mm_set_epi64x (16, 29);
36 __asm("" : "+v"(s.x), "+v"(c.x));
37 u.x = test (s.x, c.x);
39 if (c.a[0] < 32)
40 for (i = 0; i < 4; i++)
41 e[i] = s.a[i] >> c.a[0];
43 if (check_union128i_d (u, e))
44 abort ();