mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-23 00:51:00 +08:00
Roll ChangeLog file. Limit offsets to 16 bits for moxie.
From-SVN: r219136
This commit is contained in:
parent
a30772be37
commit
f8478c4220
49451
gcc/ChangeLog
49451
gcc/ChangeLog
File diff suppressed because it is too large
Load Diff
49453
gcc/ChangeLog-2014
Normal file
49453
gcc/ChangeLog-2014
Normal file
File diff suppressed because it is too large
Load Diff
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user