1  /* Test floating-point conversions.  __float128 type with TImode.  */
       2  /* Origin: Joseph Myers <joseph@codesourcery.com> */
       3  /* { dg-do run } */
       4  /* { dg-require-effective-target __float128 } */
       5  /* { dg-require-effective-target base_quadfloat_support } */
       6  /* { dg-options "" } */
       7  /* { dg-add-options __float128 } */
       8  
       9  #include "fp-int-convert.h"
      10  
      11  #define FLOAT128_MANT_DIG 113
      12  #define FLOAT128_MAX_EXP 16384
      13  
      14  int
      15  main (void)
      16  {
      17    TEST_I_F(TItype, UTItype, __float128, FLOAT128_MANT_DIG, FLOAT128_MAX_EXP);
      18    exit (0);
      19  }