diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 15:37:04 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-17 15:37:04 +0000 |
commit | c70f711149bb09e66d312cb18a1325e309e1a46c (patch) | |
tree | 2c932fb63a8aa3c1db1b432e880202b0e3f267b3 /gcc/regmove.c | |
parent | 38b9004f47abbfee75df3dba53f7a644203fdbf6 (diff) | |
download | gcc-c70f711149bb09e66d312cb18a1325e309e1a46c.tar.gz |
* machmode.h: PROTO -> PARAMS.
* mbchar.h: Likewise.
* mips-tdump.c: Likewise.
* mips-tfile.c: Likewise.
* optabs.c: Likewise.
* output.h: Likewise.
* prefix.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.h: Likewise.
* recog.c: Likewise.
* recog.h: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* regs.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31459 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regmove.c')
-rw-r--r-- | gcc/regmove.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c index 810f9d97a84..10b933f2888 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -41,11 +41,11 @@ Boston, MA 02111-1307, USA. */ #include "basic-block.h" #include "toplev.h" -static int optimize_reg_copy_1 PROTO((rtx, rtx, rtx)); -static void optimize_reg_copy_2 PROTO((rtx, rtx, rtx)); -static void optimize_reg_copy_3 PROTO((rtx, rtx, rtx)); -static rtx gen_add3_insn PROTO((rtx, rtx, rtx)); -static void copy_src_to_dest PROTO((rtx, rtx, rtx, int)); +static int optimize_reg_copy_1 PARAMS ((rtx, rtx, rtx)); +static void optimize_reg_copy_2 PARAMS ((rtx, rtx, rtx)); +static void optimize_reg_copy_3 PARAMS ((rtx, rtx, rtx)); +static rtx gen_add3_insn PARAMS ((rtx, rtx, rtx)); +static void copy_src_to_dest PARAMS ((rtx, rtx, rtx, int)); static int *regmove_bb_head; struct match { @@ -55,19 +55,19 @@ struct match { int early_clobber[MAX_RECOG_OPERANDS]; }; -static rtx discover_flags_reg PROTO((void)); -static void mark_flags_life_zones PROTO((rtx)); -static void flags_set_1 PROTO((rtx, rtx, void *)); +static rtx discover_flags_reg PARAMS ((void)); +static void mark_flags_life_zones PARAMS ((rtx)); +static void flags_set_1 PARAMS ((rtx, rtx, void *)); -static int try_auto_increment PROTO((rtx, rtx, rtx, rtx, HOST_WIDE_INT, int)); -static int find_matches PROTO((rtx, struct match *)); -static int fixup_match_1 PROTO((rtx, rtx, rtx, rtx, rtx, int, int, int, FILE *)) +static int try_auto_increment PARAMS ((rtx, rtx, rtx, rtx, HOST_WIDE_INT, int)); +static int find_matches PARAMS ((rtx, struct match *)); +static int fixup_match_1 PARAMS ((rtx, rtx, rtx, rtx, rtx, int, int, int, FILE *)) ; -static int reg_is_remote_constant_p PROTO((rtx, rtx, rtx)); -static int stable_and_no_regs_but_for_p PROTO((rtx, rtx, rtx)); -static int regclass_compatible_p PROTO((int, int)); -static int replacement_quality PROTO((rtx)); -static int fixup_match_2 PROTO((rtx, rtx, rtx, rtx, FILE *)); +static int reg_is_remote_constant_p PARAMS ((rtx, rtx, rtx)); +static int stable_and_no_regs_but_for_p PARAMS ((rtx, rtx, rtx)); +static int regclass_compatible_p PARAMS ((int, int)); +static int replacement_quality PARAMS ((rtx)); +static int fixup_match_2 PARAMS ((rtx, rtx, rtx, rtx, FILE *)); /* Return non-zero if registers with CLASS1 and CLASS2 can be merged without causing too much register allocation problems. */ |