struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-980602-1.c
blob2cfb071ff4ec54c843274f1ac42d942008183656
1 /*
2 980602-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 int i;
15 for (i = 1; i < 100; i++)
17 if (i == 100)
18 return;
19 ASSERT (0);