1 /* { dg-do run } */
2 /* { dg-require-effective-target avx } */
3 /* { dg-options "-O2 -mavx -DNEED_IEEE754_DOUBLE" } */
4 
5 #include "avx-check.h"
6 
7 static void
avx_test()8 avx_test ()
9 {
10     int i;
11     union128d source1, source2;
12 
13     double s1[2] = {0, -5463};
14     double s2[2] = {0, -1223};
15     int    d[1];
16     int    e[1];
17     int c = 1;
18     int z = 1;
19 
20     source1.x = _mm_loadu_pd(s1);
21     source2.x = _mm_loadu_pd(s2);
22 
23     d[0] = _mm_testnzc_pd(source1.x, source2.x);
24 
25     e[0] = 1;
26     for (i = 0; i < 2; i++) {
27 	union ieee754_double u1, u2;
28 	u1.d = s1[i];
29 	u2.d = s2[i];
30         if (u1.bits.sign && u2.bits.sign)
31             z = 0;
32         if (!u1.bits.sign && u2.bits.sign)
33             c = 0;
34 
35     }
36 
37     e[0] = (c==0 && z==0) ? 1:0;
38 
39     if (checkVi(d, e, 1))
40       abort ();
41 }
42 
43