2 struct-ini-1.c from the execute part of the gcc torture tests.
11 #if 0 // TODO: Enable when SDCC allows brace omission in struct initialization!
18 struct S object
= {'X', 8, 9};
22 testTortureExecute (void)
24 #if 0 // TODO: Enable when SDCC allows brace omission in struct initialization!
25 if (object
.f1
!= 'X' || object
.f2
[0] != 8 || object
.f2
[1] != 9)