diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-13 23:41:11 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-13 23:41:11 +0000 |
commit | 7cc785dde2370ef930e467f67600570390927abc (patch) | |
tree | 656d1072d377bbc8152512dc99896194e515b257 /gcc/rtlanal.c | |
parent | f49aed976599e5b6e58b803a1848441858fcf87f (diff) | |
download | gcc-7cc785dde2370ef930e467f67600570390927abc.tar.gz |
* rtl.h: Delete duplicate prototypes. Add some missing
prototypes.
* rtlanal.c: (for_each_rtx): Formatting tweak.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23069 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 6e5fa77fd3e..15151783875 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -2058,7 +2058,8 @@ computed_jump_p (insn) This routine is very general, and could (should?) be used to implement many of the other routines in this file. */ -int for_each_rtx (x, f, data) +int +for_each_rtx (x, f, data) rtx* x; rtx_function f; void* data; |