2 pr60003.c from the execute part of the gcc torture tests.
26 struct S1 x
= { 1, {{2, 3}, {4, 5}}, {{6, 7}, {8, 9}} };
28 #ifndef __SDCC_mcs51 // mcs51 does not yet support returning struct
29 #if !defined(__SDCC_hc08) && !defined(__SDCC_s08) && !defined(__SDCC_mos6502) && !defined(__SDCC_mos65c02) // Bug #3356
30 #if !defined(__SDCC_ds390) // Bug #3362
40 testTortureExecute (void)
42 #if 0 // Enable when sdcc support struct initzalization as below
43 struct S1 ret
= func ();
45 if (ret
.m2
[1].m1
!= 9)