diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/expr.h | 6 | ||||
-rw-r--r-- | gcc/gengtype-lex.l | 8 |
3 files changed, 13 insertions, 7 deletions
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 <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 @@ -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" |