diff options
author | Mark Mitchell <mark@markmitchell.com> | 1999-02-10 09:56:36 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-02-10 09:56:36 +0000 |
commit | ef30399b50248459021d6a08ea569432700c1a86 (patch) | |
tree | 3c3664dfb9faa73996f93eed5cd38f1f33d6bf01 /gcc | |
parent | f93233bbe9980cac7d633336a280759ba50dc9b1 (diff) | |
download | gcc-ef30399b50248459021d6a08ea569432700c1a86.zip gcc-ef30399b50248459021d6a08ea569432700c1a86.tar.gz gcc-ef30399b50248459021d6a08ea569432700c1a86.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/rtlanal.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c61082..b7bc29f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 08858ad..ffaad23 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -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; |