This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Contribution: Support for Cirrus Maverick EP9312 chip
- From: Richard Earnshaw <rearnsha at arm dot com>
- To: Nick Clifton <nickc at redhat dot com>
- Cc: Richard dot Earnshaw at arm dot com, gcc-patches at gcc dot gnu dot org
- Date: Fri, 28 Feb 2003 10:18:36 +0000
- Subject: Re: Contribution: Support for Cirrus Maverick EP9312 chip
- Organization: ARM Ltd.
- Reply-to: Richard dot Earnshaw at arm dot com
(note_invalid_constants): Change from a void function to bool.
Add an extra parameter, saying whether the fixups should be
pushed. Return true if fixups are needed.
This introduces a warning regression. You can't have a "bool" parameter
in K&R compatible functions, since bool must be promoted when prototypes
are not used. The parameter needs to be "int".
R.