This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
va_list on PowerPC
- From: Gabriel Dos Reis <gdr at codesourcery dot com>
- To: gcc at gcc dot gnu dot org
- Date: 28 Jun 2002 23:17:04 +0200
- Subject: va_list on PowerPC
- Organization: CodeSourcery, LLC
Hi,
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];
However, I failed to find any definition to that effect for the
PowerPC target in GCC sources. Could someone enlighten me?
Thanks,
-- Gaby