* pa/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix thinko in last change.

From-SVN: r12572
This commit is contained in:
Jeff Law 1996-07-29 12:15:37 -06:00
parent f46285d162
commit 1e0e41d231
1 changed files with 3 additions and 3 deletions

View File

@ -1475,14 +1475,14 @@ extern struct rtx_def *hppa_builtin_saveregs ();
|| ((MODE) != SFmode && (MODE) != DFmode))) \
|| INT_5_BITS (index))) \
goto ADDR; \
if (base \
if (! TARGET_SOFT_FLOAT \
&& base \
&& (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)\
&& shadd_operand (XEXP (index, 1), VOIDmode)) \
&& INTVAL (XEXP (index, 1)) == (mode == SFmode ? 4 : 8))\
goto ADDR; \
} \
else if (GET_CODE (X) == LO_SUM \