Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git] / gcc / testsuite / g++.dg / compat / decimal / pass-3_x.C
blob17e4d1c8b5a34626e77cdf4e606edfc26902b5fc
1 typedef float dec32 __attribute__((mode(SD)));
2 typedef float dec64 __attribute__((mode(DD)));
3 typedef float dec128 __attribute__((mode(TD)));
5 #include "pass_x.h"
7 void
8 pass_3_x (void)
10 DEBUG_INIT
12 #define T(NAME) testit##NAME ();
14 #ifndef SKIP_DECIMAL32
15 T(d32)
16 #endif
17 #ifndef SKIP_DECIMAL64
18 T(d64)
19 #endif
20 #ifndef SKIP_DECIMAL128
21 T(d128)
22 #endif
24 DEBUG_FINI
26 if (fails != 0)
27   abort ();
29 #undef T