2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse2-cvtps2dq-1.c
blobe4dcd11fe90b0dca10f8f26ac2402cc936ab89aa
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 __m128i
18 __attribute__((noinline, unused))
19 test (__m128 p)
21 return _mm_cvtps_epi32 (p);
24 static void
25 TEST (void)
27 union128i_d u;
28 union128 s;
29 int e[4] = {0};
31 s.x = _mm_set_ps (2.78, 7777768.82, 2.331, 3.456);
33 u.x = test (s.x);
35 e[0] = (int)(s.a[0] + 0.5);
36 e[1] = (int)(s.a[1] + 0.5);
37 e[2] = (int)(s.a[2] + 0.5);
38 e[3] = (int)(s.a[3] + 0.5);
40 if (check_union128i_d (u, e))
41 abort ();