This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: va_list on PowerPC
- From: Aldy Hernandez <aldyh at redhat dot com>
- To: Gabriel Dos Reis <gdr at codesourcery dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: 28 Jun 2002 14:24:47 -0700
- Subject: Re: va_list on PowerPC
- References: <m3u1nnp0hb.fsf@merlin.nerim.net>
>>>>> "Gabriel" == Gabriel Dos Reis <gdr@codesourcery.com> writes:
> The PowerPC processor System V ABI Supplement linked from our
> "Further Readings" page states that va_list should have a definition
> semantically equivalent to the following
> typedef struct {
> char gpr;
> char fpr;
> char *overflow_arg_area;
> char *reg_save_area;
> } va_list[1];
look at:
config/rs6000/rs6000.c: rs6000_build_va_list()
aldy