Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr59338.c
blob481c84d4ee71b3b8817ed0232872e60601ce7ed7
1 /* { dg-do compile } */
3 typedef enum
5 XYZZY,
6 } enumType;
8 typedef struct
10 unsigned char More : 1;
11 } tResp;
13 typedef struct
15 enumType QueryType;
16 union
18 tResp l[0];
19 } u;
20 } tQResp;
22 void test(void)
24 tQResp *qResp = (0);
25 if (qResp->u.l[0].More == 0)
26 return;