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_cvtpd_epi32
13 #endif
14
15 #include <emmintrin.h>
16
17 static __m128i
18 __attribute__((noinline, unused))
test(__m128d p)19 test (__m128d p)
20 {
21 return _mm_cvtpd_epi32 (p);
22 }
23
24 static void
TEST(void)25 TEST (void)
26 {
27 union128i_d u;
28 union128d s;
29 int e[4] = {0};
30
31 s.x = _mm_set_pd (2.78, 7777768.82);
32
33 u.x = test (s.x);
34
35 e[0] = (int)(s.a[0] + 0.5);
36 e[1] = (int)(s.a[1] + 0.5);
37
38 if (check_union128i_d (u, e))
39 {
40 #if DEBUG
41 printf ("sse2_test_cvtpd_epi32; check_union128i_d failed\n");
42 printf ("\t [%f,%f] -> [%d,%d,%d,%d]\n", s.a[0], s.a[1], u.a[0], u.a[1],
43 u.a[2], u.a[3]);
44 printf ("\t expect [%d,%d,%d,%d]\n", e[0], e[1], e[2], e[3]);
45 #endif
46 abort ();
47 }
48 }
49