Commit abbe8578 by Kazu Hirata Committed by Kazu Hirata

* regrename.c (find_oldest_value_reg): Fix a warning.

From-SVN: r75871
parent 192c8d78
2004-01-14 Kazu Hirata <kazu@cs.umass.edu>
* regrename.c (find_oldest_value_reg): Fix a warning.
2004-01-14 Richard Earnshaw <rearnsha@arm.com>
PR bootstrap/12527
......
......@@ -1345,8 +1345,8 @@ find_oldest_value_reg (enum reg_class class, rtx reg, struct value_data *vd)
if (!TEST_HARD_REG_BIT (reg_class_contents[class], last))
return NULL_RTX;
if (new = maybe_mode_change (oldmode, vd->e[regno].mode, mode, i,
regno))
new = maybe_mode_change (oldmode, vd->e[regno].mode, mode, i, regno);
if (new)
{
ORIGINAL_REGNO (new) = ORIGINAL_REGNO (reg);
REG_ATTRS (new) = REG_ATTRS (reg);
......
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