(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr49567.c
       1  /* PR debug/49567 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-g -O2 -msse4" } */
       4  
       5  #include <x86intrin.h>
       6  
       7  __m128
       8  foo (__m128i x)
       9  {
      10    __m128i y;
      11    y = _mm_cvtepi16_epi32 (x);
      12    return _mm_cvtepi32_ps (y);
      13  }