* config/pa/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.

From-SVN: r49711
This commit is contained in:
Graham Stott 2002-02-12 20:59:07 +00:00 committed by Graham Stott
parent adb60117d7
commit fc209487c0
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-02-12 Graham Stott <grahams@redhat.com>
* config/hp/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
2002-02-12 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit

View File

@ -1286,12 +1286,12 @@ extern int may_call_alloca;
if (! TARGET_SOFT_FLOAT \
&& ! TARGET_DISABLE_INDEXING \
&& base \
&& (mode == SFmode || mode == DFmode) \
&& ((MODE) == SFmode || (MODE) == DFmode) \
&& GET_CODE (index) == MULT \
&& GET_CODE (XEXP (index, 0)) == REG \
&& REG_OK_FOR_BASE_P (XEXP (index, 0)) \
&& GET_CODE (XEXP (index, 1)) == CONST_INT \
&& INTVAL (XEXP (index, 1)) == (mode == SFmode ? 4 : 8))\
&& INTVAL (XEXP (index, 1)) == ((MODE) == SFmode ? 4 : 8))\
goto ADDR; \
} \
else if (GET_CODE (X) == LO_SUM \