Commit 0e8949ba by Michael Meissner

*** empty log message ***

From-SVN: r758
parent 26b8e6e5
...@@ -1961,7 +1961,6 @@ output_block_move (insn, operands, num_regs, move_type) ...@@ -1961,7 +1961,6 @@ output_block_move (insn, operands, num_regs, move_type)
int use_lwl_lwr = FALSE; int use_lwl_lwr = FALSE;
int last_operand = num_regs+4; int last_operand = num_regs+4;
int i; int i;
int j;
rtx xoperands[10]; rtx xoperands[10];
struct { struct {
...@@ -1981,15 +1980,7 @@ output_block_move (insn, operands, num_regs, move_type) ...@@ -1981,15 +1980,7 @@ output_block_move (insn, operands, num_regs, move_type)
if (reg_mentioned_p (operands[i], operands[0]) if (reg_mentioned_p (operands[i], operands[0])
|| reg_mentioned_p (operands[i], operands[1])) || reg_mentioned_p (operands[i], operands[1]))
{ {
error ("register $%d passed as address and temp register to block move", abort_with_insn (insn, "register passed as address and temp register to block move");
REGNO (operands[i]));
for (j = i+1; j < last_operand; j++)
operands[j-1] = operands[j];
operands[--last_operand] = (rtx)0;
if (--num_regs == 0)
abort ();
} }
} }
......
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