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/rtlanal.c | |
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/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |