diff options
author | Jeffrey A Law <law@cygnus.com> | 2000-01-04 07:20:31 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-01-04 00:20:31 -0700 |
commit | 4963c995cc86f829725ad41a44674aa49ee82ef4 (patch) | |
tree | f6ab91346bf90f04ab153609d9bb018322ee8cc1 /gcc/regclass.c | |
parent | fb75402575c709ece86dd9fd7883f5518375ceb8 (diff) | |
download | gcc-4963c995cc86f829725ad41a44674aa49ee82ef4.zip gcc-4963c995cc86f829725ad41a44674aa49ee82ef4.tar.gz gcc-4963c995cc86f829725ad41a44674aa49ee82ef4.tar.bz2 |
* regclass.c: Fix minor whitespace problems.
From-SVN: r31191
Diffstat (limited to 'gcc/regclass.c')
-rw-r--r-- | gcc/regclass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/regclass.c b/gcc/regclass.c index 1da14a4..d25af73 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -974,7 +974,7 @@ scan_one_insn (insn, pass) return PREV_INSN (newinsn); } - record_operand_costs(insn, op_costs, reg_pref); + record_operand_costs (insn, op_costs, reg_pref); /* Now add the cost for each operand to the total costs for its register. */ @@ -1126,7 +1126,7 @@ regclass (f, nregs, dump) if (dump) { dump_regclass (dump); - fprintf(dump,"\n"); + fprintf (dump,"\n"); } for (i = FIRST_PSEUDO_REGISTER; i < nregs; i++) { @@ -1187,7 +1187,7 @@ regclass (f, nregs, dump) || reg_pref[i].altclass != (int) alt)) { static const char *const reg_class_names[] = REG_CLASS_NAMES; - fprintf(dump, " Register %i", i); + fprintf (dump, " Register %i", i); if (alt == ALL_REGS || best == ALL_REGS) fprintf (dump, " pref %s\n", reg_class_names[(int) best]); else if (alt == NO_REGS) |