c++: normalizing ttp constraints [PR115656]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-movq-2.c
bloba2e22d13f1eb7a18f2eafbf4cb61cf4d2d03ecb5
1 /* { dg-do run } */
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 } */
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_movq_2
14 #endif
16 #include <emmintrin.h>
18 static __m128i
19 __attribute__((noinline, unused))
20 test (long long b)
22 __asm("" : "+r" (b));
23 return _mm_cvtsi64_si128 (b);
26 static void
27 TEST (void)
29 union128i_q u;
30 long long b = 4294967295133LL;
31 long long e[2] = {0};
33 u.x = test (b);
35 e[0] = b;
37 if (check_union128i_q (u, e))
38 abort ();