[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sse2-andpd-1.c
blob0a9df60f87a088b5c21d561ff961900f01db42e8
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_andpd_1
14 #endif
16 #include <emmintrin.h>
18 static __m128d
19 __attribute__((noinline, unused))
20 test (__m128d s1, __m128d s2)
22 return _mm_and_pd (s1, s2);
25 static void
26 TEST (void)
28 union128d u, s1, s2;
30 union
32 double d[2];
33 long long ll[2];
34 }source1, source2, e;
35 double d[2];
37 s1.x = _mm_set_pd (34545, 95567);
38 s2.x = _mm_set_pd (674, 57897);
40 _mm_storeu_pd (source1.d, s1.x);
41 _mm_storeu_pd (source2.d, s2.x);
43 u.x = test (s1.x, s2.x);
45 e.ll[0] = source1.ll[0] & source2.ll[0];
46 e.ll[1] = source1.ll[1] & source2.ll[1];
47 __builtin_memcpy (d, e.d, sizeof (d));
49 if (check_union128d (u, d))
50 abort ();