[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-movsd-2.c
blobcd611d141bb19e12993d5868f5c51e2da270b244
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_movsd_2
14 #endif
16 #include <emmintrin.h>
18 static void
19 __attribute__((noinline, unused))
20 test (double *p, __m128d a)
22 _mm_store_sd (p, a);
25 static void
26 TEST (void)
28 union128d u;
29 double d[1];
30 double e[1];
32 u.x = _mm_set_pd (128.023, 3345.1234);
33 test (d, u.x);
35 e[0] = u.a[0];
37 if (checkVd (d, e, 1))
38 abort ();