1 /* On the i960 any arg bigger than 16 bytes causes all subsequent args
2 to be passed on the stack. We test this. */
11 f (big x
, char *s
, ...)
15 if (x
.a
[0] != 'a' || x
.a
[1] != 'b' || x
.a
[2] != 'c')
18 if (va_arg (ap
, int) != 42)
20 if (va_arg (ap
, int) != 'x')
22 if (va_arg (ap
, int) != 0)
29 static big x
= { "abc" };
31 f (x
, "", 42, 'x', 0);