Commit 15f3d16a by Jeff Law

mips.c (move_operand): Accept any general operand after reload has started.

        * mips.c (move_operand): Accept any general operand after reload
        has started.

From-SVN: r14059
parent 6f54921d
......@@ -715,8 +715,15 @@ move_operand (op, mode)
rtx op;
enum machine_mode mode;
{
/* Accept any general operand after reload has started; doing so
avoids losing if reload does an in-place replacement of a register
with a SYMBOL_REF or CONST. */
return (general_operand (op, mode)
&& ! (mips_split_addresses && mips_check_split (op, mode)));
&& (! (mips_split_addresses && mips_check_split (op, mode))
|| reload_in_progress
|| reload_completed));
}
/* Return true if OPERAND is valid as a source operand for movdi.
......
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