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 } */
7 #define CHECK_H "sse2-check.h"
13 #define TEST sse2_test_psubq_1
16 #include <emmintrin.h>
19 __attribute__((noinline
, unused
))
20 test (__m128i s1
, __m128i s2
)
22 __asm("" : "+v"(s1
), "+v"(s2
));
23 return _mm_sub_epi64 (s1
, s2
);
29 union128i_q u
, s1
, s2
;
33 s1
.x
= _mm_set_epi64x (90,-80);
34 s2
.x
= _mm_set_epi64x (76, -100);
35 u
.x
= test (s1
.x
, s2
.x
);
37 for (i
= 0; i
< 2; i
++)
38 e
[i
] = s1
.a
[i
] - s2
.a
[i
];
40 if (check_union128i_q (u
, e
))