[RS6000] Tests that use int128_t and -m32
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-psraw-1.c
blobc66733851feedd819c1b91b4b41ef98700d48652
1 /* { dg-do run } */
2 /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
3 /* { dg-require-effective-target p8vector_hw } */
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
9 #include CHECK_H
11 #ifndef TEST
12 #define TEST sse2_test_psraw_1
13 #endif
15 #define N 0xb
17 #include <emmintrin.h>
19 static __m128i
20 __attribute__((noinline, unused))
21 test (__m128i s1)
23 return _mm_srai_epi16 (s1, N);
26 static void
27 TEST (void)
29 union128i_w u, s;
30 short e[8] = {0};
31 int i;
33 s.x = _mm_set_epi16 (1, -2, 3, 4, -5, 6, 0x7000, 0x9000);
35 u.x = test (s.x);
37 if (N < 16)
38 for (i = 0; i < 8; i++)
39 e[i] = s.a[i] >> N;
41 if (check_union128i_w (u, e))
42 abort ();