Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / torture / fp-int-convert-float128.c
blob0e774e0ab2772ee8776c1459881baef055632e41
1 /* Test floating-point conversions. __float128 type. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do run { target { ia64-*-* || { { i?86-*-* x86_64-*-*} && lp64 } } } } */
4 /* { dg-xfail-if "" { i?86-*-* x86_64-*-* } { "*" } { "" } } */
5 /* { dg-options "" } */
7 #include "fp-int-convert.h"
9 #define FLOAT128_MANT_DIG 113
11 int
12 main (void)
14 TEST_I_F(signed char, unsigned char, __float128, FLOAT128_MANT_DIG);
15 TEST_I_F(signed short, unsigned short, __float128, FLOAT128_MANT_DIG);
16 TEST_I_F(signed int, unsigned int, __float128, FLOAT128_MANT_DIG);
17 TEST_I_F(signed long, unsigned long, __float128, FLOAT128_MANT_DIG);
18 TEST_I_F(signed long long, unsigned long long, __float128, FLOAT128_MANT_DIG);
19 exit (0);