*** empty log message ***

From-SVN: r1154
This commit is contained in:
Torbjorn Granlund 1992-06-04 15:26:30 +00:00
parent 68d884911e
commit 63a1f8345f

View File

@ -845,6 +845,13 @@ output_move_double (operands)
return singlemove_string (operands);
}
if (optype0 == REGOP && optype1 == REGOP
&& REGNO (operands[0]) == REGNO (operands[1]) + 1)
{
output_asm_insn (singlemove_string (latehalf), latehalf);
return singlemove_string (operands);
}
/* Normal case: do the two words, low-numbered first. */
output_asm_insn (singlemove_string (operands), operands);