Commit fa60f36d by J"orn Rennecke Committed by Joern Rennecke

* sh.md (mulsi3): Update way how to find insns in a sequence.

From-SVN: r54613
parent 03b8ec29
Fri Jun 14 12:15:11 2002 J"orn Rennecke <joern.rennecke@superh.com>
* sh.md (mulsi3): Update way how to find insns in a sequence.
Fri Jun 14 12:04:02 2002 Dhananjay R. Deshpande <dhananjayd@kpit.com>
* sh.h: Define HARD_REGNO_RENAME_OK
......
......@@ -1688,9 +1688,8 @@
rtx addr = force_reg (SImode, sym);
rtx insns = gen_mulsi3_call (operands[0], operands[1],
operands[2], addr);
first = XVECEXP (insns, 0, 0);
last = XVECEXP (insns, 0, XVECLEN (insns, 0) - 1);
emit_insn (insns);
first = insns;
last = emit_insn (insns);
}
else
{
......
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