2 20000419-1.c from the execute part of the gcc torture tests.
11 // TODO: Enable when sdcc supports passing of structs!
13 struct foo
{ int a
, b
, c
; };
16 brother (int a
, int b
, int c
)
23 sister (struct foo f
, int b
, int c
)
25 brother ((f
.b
== b
), b
, c
);
30 testTortureExecute (void)
33 struct foo f
= { 7, 8, 9 };