OSDN Git Service

PR rtl-optimization/323
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / sse2-andpd-1.c
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
3
4 #ifndef CHECK_H
5 #define CHECK_H "sse2-check.h"
6 #endif
7
8 #ifndef TEST
9 #define TEST sse2_test
10 #endif
11
12 #include CHECK_H
13
14 #include <emmintrin.h>
15
16 static __m128d
17 __attribute__((noinline, unused))
18 test (__m128d s1, __m128d s2)
19 {
20   return _mm_and_pd (s1, s2); 
21 }
22
23 static void
24 TEST (void)
25 {
26   union128d u, s1, s2;
27   
28   union
29   {
30     double d[2];
31     long long ll[2];
32   }source1, source2, e;
33    
34   s1.x = _mm_set_pd (34545, 95567);
35   s2.x = _mm_set_pd (674, 57897);
36
37   _mm_storeu_pd (source1.d, s1.x);
38   _mm_storeu_pd (source2.d, s2.x);
39
40   u.x = test (s1.x, s2.x); 
41    
42   e.ll[0] = source1.ll[0] & source2.ll[0];
43   e.ll[1] = source1.ll[1] & source2.ll[1];
44
45   if (check_union128d (u, e.d))
46     abort ();
47 }