Merged revision 156805 into branch.
[official-gcc.git] / gcc / testsuite / g++.dg / compat / decimal / pass-5_x.C
blob11c4d96c9cd9420cfddb887ce66ca4729be1451c
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_5_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