Fix MIPS compiler abort on Mesa, reported by Andy Tai.

* reload.c (find_reloads): Don't penalize SCRATCH output reload.

From-SVN: r19756
This commit is contained in:
Jim Wilson 1998-05-14 12:54:35 -07:00
parent 41372177b2
commit 7924156a6a
1 changed files with 2 additions and 1 deletions

View File

@ -3272,7 +3272,8 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
/* Input reloads can be inherited more often than output
reloads can be removed, so penalize output reloads. */
if (operand_type[i] != RELOAD_FOR_INPUT)
if (operand_type[i] != RELOAD_FOR_INPUT
&& GET_CODE (operand) != SCRATCH)
reject++;
}