2 20000717-5.c from the execute part of the gcc torture tests.
11 // TODO: Enable when sdcc supports struct passing!
13 typedef struct trio
{ int a
, b
, c
; } trio
;
16 bar (int i
, int j
, int k
, trio t
)
18 if (t
.a
!= 1 || t
.b
!= 2 || t
.c
!= 3 ||
19 i
!= 4 || j
!= 5 || k
!= 6)
24 foo (trio t
, int i
, int j
, int k
)
26 return bar (i
, j
, k
, t
);
31 testTortureExecute (void)