Commit 2b672c08 by Aldy Hernandez

regrename.c (kill_value): Fix typo.

2002-01-22  Aldy Hernandez  <aldyh@redhat.com>

        * regrename.c (kill_value): Fix typo.

From-SVN: r49082
parent 73249e33
2002-01-22 Aldy Hernandez <aldyh@redhat.com>
* regrename.c (kill_value): Fix typo.
2002-01-22 Aldy Hernandez <aldyh@redhat.com>
* doc/tm.texi: Remove STARTING_FRAME_PHASE.
* config/rs6000/rs6000.h: Same.
* function.c (instantiate_virtual_regs): Remove
STARTING_FRAME_PHASE.
(assign_stack_local_1): Same.
Calculate frame phase.
2002-01-22 Nick Clifton <nickc@redhat.com> 2002-01-22 Nick Clifton <nickc@redhat.com>
* config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Move 'regno' * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Move 'regno'
...@@ -105,6 +120,7 @@ Tue Jan 22 06:26:33 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> ...@@ -105,6 +120,7 @@ Tue Jan 22 06:26:33 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
(sparc-*-netbsd*): Add netbsd-aout.h to tm_file. (sparc-*-netbsd*): Add netbsd-aout.h to tm_file.
(vax-*-netbsd*): Add netbsd-aout.h to tm_file. (vax-*-netbsd*): Add netbsd-aout.h to tm_file.
>>>>>>> 1.12770
2002-01-21 John David Anglin <dave@hiauly1.hia.nrc.ca> 2002-01-21 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa-protos.h (reg_before_reload_operand): New function prototype. * pa-protos.h (reg_before_reload_operand): New function prototype.
......
...@@ -1109,7 +1109,7 @@ kill_value (x, vd) ...@@ -1109,7 +1109,7 @@ kill_value (x, vd)
{ {
if (vd->e[j].mode == VOIDmode) if (vd->e[j].mode == VOIDmode)
continue; continue;
n = HARD_REGNO_NREGS (regno, vd->e[j].mode); n = HARD_REGNO_NREGS (j, vd->e[j].mode);
if (j + n > regno) if (j + n > regno)
for (i = 0; i < n; ++i) for (i = 0; i < n; ++i)
kill_value_regno (j + i, vd); kill_value_regno (j + i, vd);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment