Commit fc209487 by Graham Stott Committed by Graham Stott

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

From-SVN: r49711
parent adb60117
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> 2002-02-12 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit * config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
......
...@@ -1286,12 +1286,12 @@ extern int may_call_alloca; ...@@ -1286,12 +1286,12 @@ extern int may_call_alloca;
if (! TARGET_SOFT_FLOAT \ if (! TARGET_SOFT_FLOAT \
&& ! TARGET_DISABLE_INDEXING \ && ! TARGET_DISABLE_INDEXING \
&& base \ && base \
&& (mode == SFmode || mode == DFmode) \ && ((MODE) == SFmode || (MODE) == DFmode) \
&& GET_CODE (index) == MULT \ && GET_CODE (index) == MULT \
&& GET_CODE (XEXP (index, 0)) == REG \ && GET_CODE (XEXP (index, 0)) == REG \
&& REG_OK_FOR_BASE_P (XEXP (index, 0)) \ && REG_OK_FOR_BASE_P (XEXP (index, 0)) \
&& GET_CODE (XEXP (index, 1)) == CONST_INT \ && 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; \ goto ADDR; \
} \ } \
else if (GET_CODE (X) == LO_SUM \ else if (GET_CODE (X) == LO_SUM \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment