Commit 601b6520 by Mike Stump Committed by Mike Stump

* reload.c (regno_clobbered_p): Fix typo.

From-SVN: r180444
parent 14a3430e
2011-10-21 Mike Stump <mikestump@comcast.net>
* reload.c (regno_clobbered_p): Fix typo.
2011-10-24 Dodji Seketeli <dodji@redhat.com>
* input.c (expand_location): Rewrite using
......@@ -7231,7 +7231,7 @@ regno_clobbered_p (unsigned int regno, rtx insn, enum machine_mode mode,
{
rtx elt = XVECEXP (PATTERN (insn), 0, i);
if ((GET_CODE (elt) == CLOBBER
|| (sets == 1 && GET_CODE (PATTERN (insn)) == SET))
|| (sets == 1 && GET_CODE (elt) == SET))
&& REG_P (XEXP (elt, 0)))
{
unsigned int test = REGNO (XEXP (elt, 0));
......
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