rtlanal.c (for_each_rtx): Fix declaration to conform to GNU coding standards.

* rtlanal.c (for_each_rtx): Fix declaration to conform to GNU
	coding standards.

From-SVN: r25125
This commit is contained in:
Mark Mitchell 1999-02-10 09:56:36 +00:00 committed by Mark Mitchell
parent f93233bbe9
commit ef30399b50
2 changed files with 7 additions and 2 deletions

View 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

View File

@ -2143,9 +2143,9 @@ computed_jump_p (insn)
int
for_each_rtx (x, f, data)
rtx* x;
rtx *x;
rtx_function f;
void* data;
void *data;
{
int result;
int length;