don't jump when !(mode != PSIMODE || reload_completed)

This commit is contained in:
msaitoh 2001-01-18 07:31:48 +00:00
parent 9539d90a33
commit cac0dd0f79
1 changed files with 2 additions and 1 deletions

View File

@ -1143,7 +1143,8 @@ extern struct rtx_def *sh_builtin_saveregs ();
else if ((GET_CODE (X) == POST_INC || GET_CODE (X) == PRE_DEC) \
&& BASE_REGISTER_RTX_P (XEXP ((X), 0))) \
goto LABEL; \
else if (GET_CODE (X) == PLUS && MODE != PSImode) \
else if (GET_CODE (X) == PLUS \
&& ((MODE) != PSImode || reload_completed)) \
{ \
rtx xop0 = XEXP ((X), 0); \
rtx xop1 = XEXP ((X), 1); \