struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20040704-1.c
blob816b1ec4f3ddb62d2efa509fb520c088b6c50ece
1 /*
2 20040704-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 /* PR 16348: Make sure that condition-first false loops DTRT. */
13 void
14 testTortureExecute (void)
16 for (; 0 ;)
18 ASSERT (0);
19 label:
20 return;
22 goto label;