OSDN Git Service

Latest updates from FSF 4.7 branch
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / fp-int-convert-timode.c
1 /* Test floating-point conversions.  TImode types.  */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do run } */
4 /* { dg-options "" } */
5 /* { dg-skip-if "double == 32bits" { "rx-*-*" } "*" { "-m64bit-doubles" } } */
6
7 #include <float.h>
8 #include "fp-int-convert.h"
9
10 int
11 main (void)
12 {
13   TEST_I_F(TItype, UTItype, float, FLT_MANT_DIG);
14   TEST_I_F(TItype, UTItype, double, DBL_MANT_DIG);
15   /* Disable the long double tests when using IBM Extended Doubles.
16      They have variable precision, but constants calculated by gcc's
17      real.c assume fixed precision.  */
18 #if DBL_MANT_DIG != LDBL_MANT_DIG  && LDBL_MANT_DIG != 106
19   TEST_I_F(TItype, UTItype, long double, LDBL_MANT_DIG);
20 #endif
21   exit (0);
22 }