struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-20050929-1.c
blob8186807a73e60d5fe6b1301f75ab20593d6bc67f
1 /*
2 20050929-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 #if 0 // TODO: Enable when compound literals are supported!
12 /* PR middle-end/24109 */
14 struct A { int i; int j; };
15 struct B { struct A *a; struct A *b; };
16 struct C { struct B *c; struct A *d; };
17 struct C e = { &(struct B) { &(struct A) { 1, 2 }, &(struct A) { 3, 4 } }, &(struct A) { 5, 6 } };
18 #endif
20 void
21 testTortureExecute (void)
23 #if 0
24 if (e.c->a->i != 1 || e.c->a->j != 2)
25 ASSERT (0);
26 if (e.c->b->i != 3 || e.c->b->j != 4)
27 ASSERT (0);
28 if (e.d->i != 5 || e.d->j != 6)
29 ASSERT (0);
30 return;
31 #endif