diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-10-13 23:41:11 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-13 17:41:11 -0600 |
commit | ae0b51efbd5205a07efcc1d0f7e210445f8cabcf (patch) | |
tree | 656d1072d377bbc8152512dc99896194e515b257 /gcc/rtlanal.c | |
parent | 1d118f17e9f5896193756650ab0285dc43a12f88 (diff) | |
download | gcc-ae0b51efbd5205a07efcc1d0f7e210445f8cabcf.zip gcc-ae0b51efbd5205a07efcc1d0f7e210445f8cabcf.tar.gz gcc-ae0b51efbd5205a07efcc1d0f7e210445f8cabcf.tar.bz2 |
rtl.h: Delete duplicate prototypes.
* rtl.h: Delete duplicate prototypes. Add some missing
prototypes.
* rtlanal.c: (for_each_rtx): Formatting tweak.
From-SVN: r23069
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 6e5fa77..1515178 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; |