aboutsummaryrefslogtreecommitdiff
path: root/gcc/regclass.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-01-17 15:37:04 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-17 15:37:04 +0000
commit1353681247458baa6a3df8375b786df8ace7664c (patch)
tree2c932fb63a8aa3c1db1b432e880202b0e3f267b3 /gcc/regclass.c
parent3fe41456ed2b825719c3f4c5e4bd90c71f1fc677 (diff)
downloadgcc-1353681247458baa6a3df8375b786df8ace7664c.zip
gcc-1353681247458baa6a3df8375b786df8ace7664c.tar.gz
gcc-1353681247458baa6a3df8375b786df8ace7664c.tar.bz2
machmode.h: PROTO -> PARAMS.
* 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. From-SVN: r31459
Diffstat (limited to 'gcc/regclass.c')
-rw-r--r--gcc/regclass.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/regclass.c b/gcc/regclass.c
index 12938eb..8780ec6 100644
--- a/gcc/regclass.c
+++ b/gcc/regclass.c
@@ -44,8 +44,8 @@ Boston, MA 02111-1307, USA. */
#define REGISTER_MOVE_COST(x, y) 2
#endif
-static void init_reg_sets_1 PROTO((void));
-static void init_reg_modes PROTO((void));
+static void init_reg_sets_1 PARAMS ((void));
+static void init_reg_modes PARAMS ((void));
/* If we have auto-increment or auto-decrement and we can have secondary
reloads, we are not allowed to use classes requiring secondary
@@ -717,19 +717,19 @@ static struct reg_pref *reg_pref_buffer;
static int loop_cost;
-static rtx scan_one_insn PROTO((rtx, int));
-static void record_operand_costs PROTO((rtx, struct costs *, struct reg_pref *));
-static void dump_regclass PROTO((FILE *));
-static void record_reg_classes PROTO((int, int, rtx *, enum machine_mode *,
+static rtx scan_one_insn PARAMS ((rtx, int));
+static void record_operand_costs PARAMS ((rtx, struct costs *, struct reg_pref *));
+static void dump_regclass PARAMS ((FILE *));
+static void record_reg_classes PARAMS ((int, int, rtx *, enum machine_mode *,
char *, const char **, rtx,
struct costs *, struct reg_pref *));
-static int copy_cost PROTO((rtx, enum machine_mode,
+static int copy_cost PARAMS ((rtx, enum machine_mode,
enum reg_class, int));
-static void record_address_regs PROTO((rtx, enum reg_class, int));
+static void record_address_regs PARAMS ((rtx, enum reg_class, int));
#ifdef FORBIDDEN_INC_DEC_CLASSES
-static int auto_inc_dec_reg_p PROTO((rtx, enum machine_mode));
+static int auto_inc_dec_reg_p PARAMS ((rtx, enum machine_mode));
#endif
-static void reg_scan_mark_refs PROTO((rtx, rtx, int, int));
+static void reg_scan_mark_refs PARAMS ((rtx, rtx, int, int));
/* Return the reg_class in which pseudo reg number REGNO is best allocated.
This function is sometimes called before the info has been computed.