From: danglin Date: Wed, 15 Jan 2003 17:36:57 +0000 (+0000) Subject: * expr.h (emit_conditional_add): Add PARAMS to declaration. X-Git-Tag: upstream/4.9.2~82389 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=12a13e7a396c87a81e560a60564aedb37abfce8a;p=platform%2Fupstream%2Flinaro-gcc.git * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61336 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f42f48..7d82871 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-01-15 John David Anglin + + * 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 PR middle-end/9009 diff --git a/gcc/expr.h b/gcc/expr.h index 7fe3c1b..21f263c 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -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: */ diff --git a/gcc/gengtype-lex.l b/gcc/gengtype-lex.l index 25877cf..c4f96c5 100644 --- a/gcc/gengtype-lex.l +++ b/gcc/gengtype-lex.l @@ -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"