1 /* { dg-do run } */
2 /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
3 /* { dg-require-effective-target p8vector_hw } */
4
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
8
9 #include CHECK_H
10
11 #ifndef TEST
12 #define TEST sse2_test_andpd_1
13 #endif
14
15 #include <emmintrin.h>
16
17 static __m128d
18 __attribute__((noinline, unused))
19 test (__m128d s1, __m128d s2)
20 {
21 return _mm_and_pd (s1, s2);
22 }
23
24 static void
25 TEST (void)
26 {
27 union128d u, s1, s2;
28
29 union
30 {
31 double d[2];
32 long long ll[2];
33 }source1, source2, e;
34 double d[2];
35
36 s1.x = _mm_set_pd (34545, 95567);
37 s2.x = _mm_set_pd (674, 57897);
38
39 _mm_storeu_pd (source1.d, s1.x);
40 _mm_storeu_pd (source2.d, s2.x);
41
42 u.x = test (s1.x, s2.x);
43
44 e.ll[0] = source1.ll[0] & source2.ll[0];
45 e.ll[1] = source1.ll[1] & source2.ll[1];
46 __builtin_memcpy (d, e.d, sizeof (d));
47
48 if (check_union128d (u, d))
49 abort ();
50 }