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

From-SVN: r219136
This commit is contained in:
Anthony Green 2015-01-01 15:43:47 +00:00 committed by Anthony Green
parent a30772be37
commit f8478c4220
3 changed files with 49459 additions and 49448 deletions

File diff suppressed because it is too large Load Diff

49453
gcc/ChangeLog-2014 Normal file

File diff suppressed because it is too large Load Diff

View File

@ -34,7 +34,8 @@
if (MEM_P (op)
&& GET_CODE (XEXP (op, 0)) == PLUS
&& 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 general_operand (op, mode);