struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20040208-1.c
blob4f76406589654055e7615c09100cc089791c02f2
1 /*
2 20040208-1.c from the execute part of the gcc torture suite.
3 */
5 #include <testfwk.h>
7 #ifdef __SDCC
8 #pragma std_c99
9 #endif
11 void
12 testTortureExecute (void)
14 #if 0 // TODO: Enable when long double is supported!
15 long double x;
17 x = 0x1.0p-500L;
18 x *= 0x1.0p-522L;
19 if (x != 0x1.0p-1022L)
20 ASSERT (0);
21 return;
22 #endif