Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-movhpd-2.c
blobb5eb08657cd8e61673819d7939868c3c4d16a7ab
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_movhpd_2
14 #endif
16 #include <emmintrin.h>
18 static void
19 __attribute__((noinline, unused))
20 test (double *p, __m128d a)
22 __asm("" : "+v"(a), "+b"(p));
23 return _mm_storeh_pd (p, a);
26 static void
27 TEST (void)
29 union128d s;
30 double d[1];
31 double e[1];
33 s.x = _mm_set_pd (2134.3343,1234.635654);
34 test (d, s.x);
36 e[0] = s.a[1];
38 if (e[0] != d[0])
39 abort ();