(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
sse2-cvttps2dq-1.c
       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 __m128i
      18  __attribute__((noinline, unused))
      19  test (__m128 p)
      20  {
      21    return _mm_cvttps_epi32 (p); 
      22  }
      23  
      24  static void
      25  TEST (void)
      26  {
      27    union128 s;
      28    union128i_d u;
      29    int e[4] = {0};
      30  
      31    s.x = _mm_set_ps (123.321, 456.987, 33.56, 7765.321);
      32  
      33    u.x = test (s.x);
      34  
      35    e[0] = (int)s.a[0]; 
      36    e[1] = (int)s.a[1]; 
      37    e[2] = (int)s.a[2]; 
      38    e[3] = (int)s.a[3]; 
      39  
      40    if (check_union128i_d (u, e))
      41      abort ();
      42  }