Commit 23ed92ca by Jim Wilson

(machine_dependent_reorg): When remove SUBREG, add in

SUBREG_WORD to new register number.

From-SVN: r8778
parent a7771f78
......@@ -1961,10 +1961,14 @@ machine_dependent_reorg (first)
if (mode == SImode && hi_const (src))
{
/* This is an HI source, clobber the dest to get the mode right too */
int offset = 0;
mode = HImode;
while (GET_CODE (dst) == SUBREG)
dst = SUBREG_REG (dst);
dst = gen_rtx (REG, HImode, REGNO (dst));
{
offset += SUBREG_WORD (dst);
dst = SUBREG_REG (dst);
}
dst = gen_rtx (REG, HImode, REGNO (dst) + offset);
}
lab = add_constant (src, mode);
newsrc = gen_rtx (MEM, mode,
......
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