Commit 2045084c by James Van Artsdalen

(eliminate_regs): Eliminate regs within a CLOBBER.

From-SVN: r3826
parent 424aa086
...@@ -2766,6 +2766,9 @@ eliminate_regs (x, mem_mode, insn) ...@@ -2766,6 +2766,9 @@ eliminate_regs (x, mem_mode, insn)
if (ep->to_rtx == XEXP (x, 0)) if (ep->to_rtx == XEXP (x, 0))
ep->can_eliminate = 0; ep->can_eliminate = 0;
new = eliminate_regs (XEXP (x, 0), mem_mode, NULL_RTX);
if (new != XEXP (x, 0))
return gen_rtx (code, GET_MODE (x), new);
return x; return x;
case ASM_OPERANDS: case ASM_OPERANDS:
......
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