i386: testsuite: Adapt fentryname3.c for r14-811 change [PR70150]
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse2-andnpd-1.c
blob23eabab504f6e43b2d8a3576899f8539ed9aacbe
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
3 /* { dg-require-effective-target sse2 } */
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
9 #ifndef TEST
10 #define TEST sse2_test
11 #endif
13 #include CHECK_H
15 #include <emmintrin.h>
17 static __m128d
18 __attribute__((noinline, unused))
19 test (__m128d s1, __m128d s2)
21 return _mm_andnot_pd (s1, s2);
24 static void
25 TEST (void)
27 union128d u, s1, s2;
28 long long source1[2]={34545, 95567};
29 long long source2[2]={674, 57897};
30 long long e[2];
31 double d[2];
33 s1.x = _mm_loadu_pd ((double *)source1);
34 s2.x = _mm_loadu_pd ((double *)source2);
35 u.x = test (s1.x, s2.x);
37 e[0] = (~source1[0]) & source2[0];
38 e[1] = (~source1[1]) & source2[1];
39 __builtin_memcpy (d, e, sizeof (d));
41 if (check_union128d (u, d))
42 abort ();