Commit f8478c42 by Anthony Green Committed by Anthony Green

Roll ChangeLog file. Limit offsets to 16 bits for moxie.

From-SVN: r219136
parent a30772be
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -34,7 +34,8 @@ ...@@ -34,7 +34,8 @@
if (MEM_P (op) if (MEM_P (op)
&& GET_CODE (XEXP (op, 0)) == PLUS && GET_CODE (XEXP (op, 0)) == PLUS
&& GET_CODE (XEXP (XEXP (op, 0), 0)) == REG && GET_CODE (XEXP (XEXP (op, 0), 0)) == REG
&& GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST_INT) && GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST_INT
&& IN_RANGE (INTVAL (XEXP (XEXP (op, 0), 1)), -32768, 32767))
return 1; return 1;
return general_operand (op, mode); return general_operand (op, 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