Commit 6f04382a by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r30373
parent 1b3b5765
...@@ -4,6 +4,8 @@ Wed Nov 3 12:12:59 1999 Bernd Schmidt <bernds@cygnus.co.uk> ...@@ -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) 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. * dwarf2out.c: Do not include ctype.h.
Tue Nov 2 21:53:44 1999 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Tue Nov 2 21:53:44 1999 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
......
...@@ -4109,9 +4109,9 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) ...@@ -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. */ do after the insn (such as for output addresses) are fine. */
if (no_input_reloads) if (no_input_reloads)
for (i = 0; i < n_reloads; i++) for (i = 0; i < n_reloads; i++)
if (reload_in[i] != 0 if (rld[i].in != 0
&& reload_when_needed[i] != RELOAD_FOR_OUTADDR_ADDRESS && rld[i].when_needed != RELOAD_FOR_OUTADDR_ADDRESS
&& reload_when_needed[i] != RELOAD_FOR_OUTPUT_ADDRESS) && rld[i].when_needed != RELOAD_FOR_OUTPUT_ADDRESS)
abort (); abort ();
#endif #endif
......
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