rtlanal.c (for_each_rtx): Fix declaration to conform to GNU coding standards.
authorMark Mitchell <mark@markmitchell.com>
Wed, 10 Feb 1999 09:56:36 +0000 (09:56 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Wed, 10 Feb 1999 09:56:36 +0000 (09:56 +0000)
* rtlanal.c (for_each_rtx): Fix declaration to conform to GNU
coding standards.

From-SVN: r25125

gcc/ChangeLog
gcc/rtlanal.c

index 2c610829ebc25ad6d00bf42630f032f94f206d5a..b7bc29f1ee9ee2ccc2a283a9d413a5d049fe49fe 100644 (file)
@@ -1,3 +1,8 @@
+Wed Feb 10 09:57:08 1999  Mark Mitchell  <mark@markmitchell.com>
+
+       * rtlanal.c (for_each_rtx): Fix declaration to conform to GNU
+       coding standards.
+
 Wed Feb 10 10:09:41 1999  Jeffrey A Law  (law@cygnus.com)
 
        * reload1.c (reload_combine_note_store): Second argument is no
index 08858ad8d2fa737091961bdeb266af2081857d88..ffaad23769e57a7734913055ae965e2c68b38f8b 100644 (file)
@@ -2143,9 +2143,9 @@ computed_jump_p (insn)
 
 int
 for_each_rtx (x, f, data)
-     rtxx;
+     rtx *x;
      rtx_function f;
-     voiddata;
+     void *data;
 {
   int result;
   int length;