Commit b04a1b3b by Andreas Krebbel Committed by Ulrich Weigand

reload.c (find_reloads): Added missing type casts.

2003-11-19  Andreas Krebbel  <krebbel1@de.ibm.com>

	* reload.c (find_reloads): Added missing type casts.

From-SVN: r73748
parent fd21a1eb
2003-11-19 Andreas Krebbel <krebbel1@de.ibm.com>
* reload.c (find_reloads): Added missing type casts.
2003-11-19 James E Wilson <wilson@specifixinc.com>
* combine.c (sets_function_arg_p): Delete unused function.
......
......@@ -3407,9 +3407,9 @@ find_reloads (rtx insn, int replace, int ind_levels, int live_known,
reload here. */
if (GET_CODE (operand) == REG
&& REGNO (operand) < FIRST_PSEUDO_REGISTER
&& this_alternative[i] != NO_REGS
&& (enum reg_class) this_alternative[i] != NO_REGS
&& (SECONDARY_MEMORY_NEEDED
(this_alternative[i],
((enum reg_class) this_alternative[i],
REGNO_REG_CLASS (REGNO (operand)),
GET_MODE (operand))))
losers++;
......
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