* reload.c (find_reloads): Fix typos in recent change.

From-SVN: r30373
This commit is contained in:
Jeffrey A Law 1999-11-03 12:43:35 +00:00 committed by Jeff Law
parent 1b3b576549
commit 6f04382aaa
2 changed files with 5 additions and 3 deletions

View file

@ -4,6 +4,8 @@ Wed Nov 3 12:12:59 1999 Bernd Schmidt <bernds@cygnus.co.uk>
Wed Nov 3 03:26:28 1999 Jeffrey A Law (law@cygnus.com)
* reload.c (find_reloads): Fix typos in recent change.
* dwarf2out.c: Do not include ctype.h.
Tue Nov 2 21:53:44 1999 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>

View file

@ -4109,9 +4109,9 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
do after the insn (such as for output addresses) are fine. */
if (no_input_reloads)
for (i = 0; i < n_reloads; i++)
if (reload_in[i] != 0
&& reload_when_needed[i] != RELOAD_FOR_OUTADDR_ADDRESS
&& reload_when_needed[i] != RELOAD_FOR_OUTPUT_ADDRESS)
if (rld[i].in != 0
&& rld[i].when_needed != RELOAD_FOR_OUTADDR_ADDRESS
&& rld[i].when_needed != RELOAD_FOR_OUTPUT_ADDRESS)
abort ();
#endif