expr.h (emit_conditional_add): Add PARAMS to declaration.

* expr.h (emit_conditional_add): Add PARAMS to declaration.
	* gengtype-lex.l (malloc, realloc): Move defines after include of
	system.h.  Remove duplicate include of system.h.

From-SVN: r61336
This commit is contained in:
John David Anglin 2003-01-15 17:36:57 +00:00 committed by John David Anglin
parent 9ee0a4426d
commit 4da782145b
3 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2003-01-15 John David Anglin <dave.anglin@nrc.gc.ca>
* expr.h (emit_conditional_add): Add PARAMS to declaration.
* gengtype-lex.l (malloc, realloc): Move defines after include of
system.h. Remove duplicate include of system.h.
2003-01-15 Roger Sayle <roger@eyesopen.com>
PR middle-end/9009

View File

@ -307,9 +307,9 @@ rtx emit_conditional_move PARAMS ((rtx, enum rtx_code, rtx, rtx,
int can_conditionally_move_p PARAMS ((enum machine_mode mode));
#endif
rtx emit_conditional_add (rtx, enum rtx_code, rtx, rtx,
enum machine_mode, rtx, rtx,
enum machine_mode, int);
rtx emit_conditional_add PARAMS ((rtx, enum rtx_code, rtx, rtx,
enum machine_mode, rtx, rtx,
enum machine_mode, int));
/* Functions from expmed.c: */

View File

@ -20,13 +20,13 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
%{
#define malloc xmalloc
#define realloc xrealloc
#include "bconfig.h"
#include "coretypes.h"
#include "system.h"
#include "system.h"
#define malloc xmalloc
#define realloc xrealloc
#include "gengtype.h"
#include "gengtype-yacc.h"