* expr.h (emit_conditional_add): Add PARAMS to declaration.
authordanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 15 Jan 2003 17:36:57 +0000 (17:36 +0000)
committerdanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 15 Jan 2003 17:36:57 +0000 (17:36 +0000)
* 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

gcc/ChangeLog
gcc/expr.h
gcc/gengtype-lex.l

index 8f42f48..7d82871 100644 (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
index 7fe3c1b..21f263c 100644 (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));
 
 \f
 /* Functions from expmed.c:  */
index 25877cf..c4f96c5 100644 (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"