Commit f67c2384 by Jeffrey A Law Committed by Jeff Law

reload1.c (reload_as_needed): Verify that the insn satisfies its constraints…

reload1.c (reload_as_needed): Verify that the insn satisfies its constraints after replacing a register...

        * reload1.c (reload_as_needed): Verify that the insn satisfies its
        constraints after replacing a register address with an autoincrement
        address for reload inheritance purposes.

From-SVN: r24449
parent f203c520
Wed Dec 30 23:38:55 1998 Jeffrey A Law (law@cygnus.com)
* reload1.c (reload_as_needed): Verify that the insn satisfies its
constraints after replacing a register address with an autoincrement
address for reload inheritance purposes.
* i386.md (doubleword shifts): Avoid namespace pollution.
Wed Dec 30 23:00:28 1998 David O'Brien <obrien@NUXI.com>
......
......@@ -4333,9 +4333,31 @@ reload_as_needed (live_known)
if (! n)
continue;
if (n == 1)
n = validate_replace_rtx (reload_reg,
gen_rtx (code, mode,
reload_reg), p);
{
n = validate_replace_rtx (reload_reg,
gen_rtx (code, mode,
reload_reg),
p);
/* We must also verify that the constraints
are met after the replacement. */
extract_insn (p);
if (n)
n = constrain_operands (1);
else
break;
/* If the constraints were not met, then
undo the replacement. */
if (!n)
{
validate_replace_rtx (gen_rtx (code, mode,
reload_reg),
reload_reg, p);
break;
}
}
break;
}
if (n == 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