1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
3 /* { dg-require-effective-target sse2 } */
4 
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
8 
9 #ifndef TEST
10 #define TEST sse2_test
11 #endif
12 
13 #include CHECK_H
14 
15 #include <emmintrin.h>
16 
17 static int
18 __attribute__((noinline, unused))
test(__m128d p)19 test (__m128d p)
20 {
21   return _mm_cvttsd_si32 (p);
22 }
23 
24 static void
TEST(void)25 TEST (void)
26 {
27   union128d s;
28   int e;
29   int d;
30 
31   s.x = _mm_set_pd (123.321, 456.987);
32 
33   d = test (s.x);
34   e = (int)(s.a[0]);
35 
36   if (d != e)
37     abort ();
38 }
39