Commit ba4ec0e0 by Nick Clifton Committed by Nick Clifton

mn10300.c (mn10300_regno_in_class_p): Check for reg_renumber returning an INVALID_REGNUM.

	* config/mn10300/mn10300.c (mn10300_regno_in_class_p): Check for
	reg_renumber returning an INVALID_REGNUM.

From-SVN: r169432
parent c3413e5a
2011-01-31 Nick Clifton <nickc@redhat.com>
* config/mn10300/mn10300.c (mn10300_regno_in_class_p): Check for
reg_renumber returning an INVALID_REGNUM.
2011-01-31 Alexandre Oliva <aoliva@redhat.com>
PR libgcj/44341
......
......@@ -1996,6 +1996,8 @@ mn10300_regno_in_class_p (unsigned regno, int rclass, bool strict)
if (!reg_renumber)
return false;
regno = reg_renumber[regno];
if (regno == INVALID_REGNUM)
return false;
}
return TEST_HARD_REG_BIT (reg_class_contents[rclass], regno);
}
......
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