(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
torture/
vshuf-v2sf.c
       1  #if __SIZEOF_FLOAT__ == 4
       2  typedef float V __attribute__((vector_size(8)));
       3  # if __SIZEOF_INT__ == 4
       4  typedef unsigned int VI __attribute__((vector_size(8)));
       5  # elif __SIZEOF_LONG__ == 4
       6  typedef unsigned long VI __attribute__((vector_size(8)));
       7  # else
       8  #  define UNSUPPORTED
       9  # endif
      10  #else
      11  # define UNSUPPORTED
      12  #endif
      13  
      14  #define A	0.69314718055994530942f
      15  #define B	2.7182818284590452354f
      16  
      17  #define X	3.14159265358979323846f
      18  #define Y	1.41421356237309504880f
      19  
      20  #include "vshuf-2.inc"
      21  #include "vshuf-main.inc"