Commit 57caa638 by Richard Stallman

*** empty log message ***

From-SVN: r2119
parent 4cf8de9f
...@@ -364,13 +364,20 @@ init_reload () ...@@ -364,13 +364,20 @@ init_reload ()
/* See if reg+reg is a valid (and offsettable) address. */ /* See if reg+reg is a valid (and offsettable) address. */
tem = gen_rtx (PLUS, Pmode, for (i = 0; i < FIRST_PSEUDO_REGSTER; i++)
gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM), {
gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM)); tem = gen_rtx (PLUS, Pmode,
/* This way, we make sure that reg+reg is an offsettable address. */ gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM),
tem = plus_constant (tem, 4); gen_rtx (REG, Pmode, i));
/* This way, we make sure that reg+reg is an offsettable address. */
tem = plus_constant (tem, 4);
double_reg_address_ok = memory_address_p (QImode, tem); if (memory_address_p (QImode, tem))
{
double_reg_address_ok = 1;
break;
}
}
/* Initialize obstack for our rtl allocation. */ /* Initialize obstack for our rtl allocation. */
gcc_obstack_init (&reload_obstack); gcc_obstack_init (&reload_obstack);
......
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