1 /* Test floating-point conversions.  _Float64 type with TImode.  */
2 /* { dg-do run } */
3 /* { dg-options "" } */
4 /* { dg-add-options float64 } */
5 /* { dg-require-effective-target float64_runtime } */
6 
7 #define __STDC_WANT_IEC_60559_TYPES_EXT__
8 #include <float.h>
9 #include "fp-int-convert.h"
10 
11 int
main(void)12 main (void)
13 {
14   TEST_I_F(TItype, UTItype, _Float64, FLT64_MANT_DIG, FLT64_MAX_EXP);
15   exit (0);
16 }
17