Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / torture / fp-int-convert-float.c
blob7fca1df7adf2479b55093c9b579a738410fa0a2a
1 /* Test floating-point conversions. Standard types and float. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do run } */
4 /* { dg-options "" } */
6 #include <float.h>
7 #include "fp-int-convert.h"
9 int
10 main (void)
12 TEST_I_F(signed char, unsigned char, float, FLT_MANT_DIG);
13 TEST_I_F(signed short, unsigned short, float, FLT_MANT_DIG);
14 TEST_I_F(signed int, unsigned int, float, FLT_MANT_DIG);
15 TEST_I_F(signed long, unsigned long, float, FLT_MANT_DIG);
16 TEST_I_F(signed long long, unsigned long long, float, FLT_MANT_DIG);
17 exit (0);