* config/sh/sh.c (sh5_schedule_saves): Fix typo.

From-SVN: r89271
This commit is contained in:
Kaz Kojima 2004-10-19 11:05:34 +00:00
parent ad02a94436
commit f94cef0a66
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2004-10-19 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c (sh5_schedule_saves): Fix typo.
2004-10-18 Kelley Cook <kcook@gcc.gnu.org>
* configure.ac (powerpc-*-darwin*): Require assembler to support

View file

@ -5329,8 +5329,8 @@ sh5_schedule_saves (HARD_REG_SET *live_regs_mask, save_schedule *schedule,
&& ! (cfun->static_chain_decl != NULL && i == STATIC_CHAIN_REGNUM)
&& ! (current_function_calls_eh_return
&& (i == EH_RETURN_STACKADJ_REGNO
|| ((unsigned) i <= EH_RETURN_DATA_REGNO (0)
&& (unsigned) i >= EH_RETURN_DATA_REGNO (3)))))
|| ((unsigned) i >= EH_RETURN_DATA_REGNO (0)
&& (unsigned) i <= EH_RETURN_DATA_REGNO (3)))))
schedule->temps[tmpx++] = i;
entry->reg = -1;
entry->mode = VOIDmode;