Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-movq-2.c
blobe742157e9aefa1fbb4de4d699c7b5bc448d72b73
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_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 ();