Commit 072ebd49 by DJ Delorie Committed by DJ Delorie

mep.c (mep_legitimize_arg): Leave control registers alone too.

* config/mep/mep.c (mep_legitimize_arg): Leave control registers
alone too.

From-SVN: r149869
parent 4afe7ad7
2009-07-21 DJ Delorie <dj@redhat.com>
* config/mep/mep.c (mep_legitimize_arg): Leave control registers
alone too.
2009-07-21 Jason Merrill <jason@redhat.com>
* c-common.c (max_tinst_depth): Increase default to 1024.
......
......@@ -6204,7 +6204,9 @@ mep_legitimize_arg (const struct insn_operand_data *operand, rtx arg,
/* But not for control registers. */
if (operand->constraint[0] == '='
&& (! REG_P (arg)
|| ! (CCR_REGNO_P (REGNO (arg)) || CR_REGNO_P (REGNO (arg)))
|| ! (CONTROL_REGNO_P (REGNO (arg))
|| CCR_REGNO_P (REGNO (arg))
|| CR_REGNO_P (REGNO (arg)))
))
return gen_reg_rtx (operand->mode);
......
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