This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: egcs-20000925 code generation bug
- To: Richard Zidlicky <Richard dot Zidlicky at stud dot informatik dot uni-erlangen dot de>
- Subject: Re: egcs-20000925 code generation bug
- From: Richard Henderson <rth at cygnus dot com>
- Date: Sat, 30 Sep 2000 15:44:32 -0700
- Cc: gcc mailing list <gcc at gcc dot gnu dot org>
- References: <20000930225149.A18919@sirizidl.dialin.rrze.uni-erlangen.de>
On Sat, Sep 30, 2000 at 10:51:49PM +0200, Richard Zidlicky wrote:
> ((ap) = (va_list)&formatstr + ((sizeof(formatstr)+sizeof(int)\
> -(size_t)1) & ~(sizeof(int) -(size_t)1)));
If you got this from the expansion of va_start, then you're
looking at the wrong headers. This should instead expand to
__builtin_stdarg_start ((ap), formatstr);
r~