2 921112-1.c from the execute part of the gcc torture suite.
9 #pragma disable_warning 93
12 // TODO: Enable when sdcc supports struct!
15 struct { int i1
, i2
; } t
;
19 void f (union u
*x
, union u
*v
)
26 testTortureExecute (void)
29 x
[1].t
.i1
= x
[1].t
.i2
= 0;
33 if (x
[1].t
.i1
!= 1 || x
[1].t
.i2
!= 2)