+2002-12-01 Kazu Hirata <kazu@cs.umass.edu>
+
+ * config/h8300/h8300.c (h8300_output_function_prologue):
+ Remove variable idx.
+ (h8300_output_function_epilogue): Likewise.
+
2002-12-01 Zack Weinberg <zack@codesourcery.com>
* config/frv/xm-frv.h: Delete, unnecessary.
HOST_WIDE_INT size;
{
int fsize = round_frame_size (size);
- int idx;
+ int regno;
int saved_regs;
int n_regs;
/* Push the rest of the registers in ascending order. */
saved_regs = compute_saved_regs ();
- for (idx = 0; idx < FIRST_PSEUDO_REGISTER; idx += n_regs)
+ for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno += n_regs)
{
- int regno = idx;
-
n_regs = 1;
if (saved_regs & (1 << regno))
{
HOST_WIDE_INT size;
{
int fsize = round_frame_size (size);
- int idx;
+ int regno;
rtx insn = get_last_insn ();
int saved_regs;
int n_regs;
/* Pop the saved registers in descending order. */
saved_regs = compute_saved_regs ();
- for (idx = 0; idx < FIRST_PSEUDO_REGISTER; idx += n_regs)
+ for (regno = FIRST_PSEUDO_REGISTER - 1; regno >= 0; regno -= n_regs)
{
- int regno = (FIRST_PSEUDO_REGISTER - 1) - idx;
-
n_regs = 1;
if (saved_regs & (1 << regno))
{