combine.c (record_promoted_value): Remove unused variable `links2'.
* combine.c (record_promoted_value): Remove unused variable `links2'. * emit-rtl.c (renumber_insns): Likewise for `old_max_uid'. * global.c (record_conflicts): Likewise for `j'. * genoutput.c (output_insn_data): Don't unnecessarily cast away const-ness. From-SVN: r30870
This commit is contained in:
parent
69ddee6157
commit
4a71b24ff9
5 changed files with 14 additions and 4 deletions
|
@ -1,3 +1,15 @@
|
|||
1999-12-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* combine.c (record_promoted_value): Remove unused variable
|
||||
`links2'.
|
||||
|
||||
* emit-rtl.c (renumber_insns): Likewise for `old_max_uid'.
|
||||
|
||||
* global.c (record_conflicts): Likewise for `j'.
|
||||
|
||||
* genoutput.c (output_insn_data): Don't unnecessarily cast away
|
||||
const-ness.
|
||||
|
||||
1999-12-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* i386-protos.h (output_387_binary_op, output_fix_trunc,
|
||||
|
|
|
@ -11061,7 +11061,7 @@ record_promoted_value (insn, subreg)
|
|||
rtx insn;
|
||||
rtx subreg;
|
||||
{
|
||||
rtx links, links2, set;
|
||||
rtx links, set;
|
||||
int regno = REGNO (SUBREG_REG (subreg));
|
||||
enum machine_mode mode = GET_MODE (subreg);
|
||||
|
||||
|
|
|
@ -1905,7 +1905,6 @@ renumber_insns (stream)
|
|||
FILE *stream;
|
||||
{
|
||||
rtx insn;
|
||||
int old_max_uid = cur_insn_uid;
|
||||
|
||||
/* If we're not supposed to renumber instructions, don't. */
|
||||
if (!flag_renumber_insns)
|
||||
|
|
|
@ -361,7 +361,7 @@ output_insn_data ()
|
|||
break;
|
||||
case INSN_OUTPUT_FORMAT_MULTI:
|
||||
case INSN_OUTPUT_FORMAT_FUNCTION:
|
||||
printf (" (PTR) output_%d,\n", d->code_number);
|
||||
printf (" (const PTR) output_%d,\n", d->code_number);
|
||||
break;
|
||||
default:
|
||||
abort ();
|
||||
|
|
|
@ -1352,7 +1352,6 @@ record_conflicts (allocno_vec, len)
|
|||
register int len;
|
||||
{
|
||||
register int num;
|
||||
register int j;
|
||||
register int ialloc_prod;
|
||||
|
||||
while (--len >= 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue