2 strct-varg-1.c from the execute part of the gcc torture tests.
9 struct s
{ int x
, y
; };
21 va_values
= va_arg (va
, struct s
);
22 ASSERT(!(va_values
.x
!= 0xaaaa || va_values
.y
!= 0x5555));
24 attr
= va_arg (va
, int);
27 va_values
= va_arg (va
, struct s
);
28 ASSERT(!(va_values
.x
!= 0xffff || va_values
.y
!= 0x1111));
33 testTortureExecute (void)