2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / va-arg-23.c
blob89a11cf9f7357f470f0426f6ae5580fbec6f656f
1 /* PR 9700 */
2 /* Alpha got the base address for the va_list incorrect when there was
3 a structure that was passed partially in registers and partially on
4 the stack. */
6 #include <stdarg.h>
8 struct two { long x, y; };
10 void foo(int a, int b, int c, int d, int e, struct two f, int g, ...)
12 va_list args;
13 int h;
15 va_start(args, g);
16 h = va_arg(args, int);
17 if (g != 1 || h != 2)
18 abort ();
21 int main()
23 struct two t = { 0, 0 };
24 foo(0, 0, 0, 0, 0, t, 1, 2);
25 return 0;