1 /* Test floating-point conversions. Standard types and float. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-options "" } */
7 #include "fp-int-convert.h"
12 TEST_I_F(signed char, unsigned char, float, FLT_MANT_DIG
, FLT_MAX_EXP
);
13 TEST_I_F(signed short, unsigned short, float, FLT_MANT_DIG
, FLT_MAX_EXP
);
14 TEST_I_F(signed int, unsigned int, float, FLT_MANT_DIG
, FLT_MAX_EXP
);
15 TEST_I_F(signed long, unsigned long, float, FLT_MANT_DIG
, FLT_MAX_EXP
);
16 TEST_I_F(signed long long, unsigned long long, float, FLT_MANT_DIG
, FLT_MAX_EXP
);