Commit 0a2e51a9 by Richard Stallman

*** empty log message ***

From-SVN: r1688
parent 3d32ffd1
...@@ -3569,11 +3569,19 @@ forget_old_reloads_1 (x) ...@@ -3569,11 +3569,19 @@ forget_old_reloads_1 (x)
{ {
register int regno; register int regno;
int nr; int nr;
int offset = 0;
/* note_stores does give us subregs of hard regs. */
while (GET_CODE (x) == SUBREG)
{
offset += SUBREG_WORD (x);
x = SUBREG_REG (x);
}
if (GET_CODE (x) != REG) if (GET_CODE (x) != REG)
return; return;
regno = REGNO (x); regno = REGNO (x) + offset;
if (regno >= FIRST_PSEUDO_REGISTER) if (regno >= FIRST_PSEUDO_REGISTER)
nr = 1; nr = 1;
......
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