arm.c (arm_legitimate_address_p): Don't check the mode size for minipool references.

* config/arm/arm.c (arm_legitimate_address_p): Don't check the mode
	size for minipool references.

From-SVN: r76429
This commit is contained in:
Daniel Jacobowitz 2004-01-23 16:33:43 +00:00 committed by Daniel Jacobowitz
parent 25348c94e7
commit 0bfb39efec
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-01-23 Daniel Jacobowitz <drow@mvista.com>
* config/arm/arm.c (arm_legitimate_address_p): Don't check the mode
size for minipool references.
2004-01-23 Roger Sayle <roger@eyesopen.com>
* real.c (real_floor, real_ceil): Tweak to allow input and output

View file

@ -2741,7 +2741,7 @@ arm_legitimate_address_p (enum machine_mode mode, rtx x, int strict_p)
/* After reload constants split into minipools will have addresses
from a LABEL_REF. */
else if (GET_MODE_SIZE (mode) >= 4 && reload_completed
else if (reload_completed
&& (GET_CODE (x) == LABEL_REF
|| (GET_CODE (x) == CONST
&& GET_CODE (XEXP (x, 0)) == PLUS