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
This commit is contained in:
parent
fd21a1eb28
commit
b04a1b3b0c
@ -1,3 +1,7 @@
|
|||||||
|
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>
|
2003-11-19 James E Wilson <wilson@specifixinc.com>
|
||||||
|
|
||||||
* combine.c (sets_function_arg_p): Delete unused function.
|
* 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. */
|
reload here. */
|
||||||
if (GET_CODE (operand) == REG
|
if (GET_CODE (operand) == REG
|
||||||
&& REGNO (operand) < FIRST_PSEUDO_REGISTER
|
&& REGNO (operand) < FIRST_PSEUDO_REGISTER
|
||||||
&& this_alternative[i] != NO_REGS
|
&& (enum reg_class) this_alternative[i] != NO_REGS
|
||||||
&& (SECONDARY_MEMORY_NEEDED
|
&& (SECONDARY_MEMORY_NEEDED
|
||||||
(this_alternative[i],
|
((enum reg_class) this_alternative[i],
|
||||||
REGNO_REG_CLASS (REGNO (operand)),
|
REGNO_REG_CLASS (REGNO (operand)),
|
||||||
GET_MODE (operand))))
|
GET_MODE (operand))))
|
||||||
losers++;
|
losers++;
|
||||||
|
Loading…
Reference in New Issue
Block a user