Commit e048778f by Richard Kenner

(mark_used_regs_combine): Correct typo.

From-SVN: r6831
parent d6e28396
...@@ -10015,10 +10015,10 @@ mark_used_regs_combine (x) ...@@ -10015,10 +10015,10 @@ mark_used_regs_combine (x)
the address. */ the address. */
register rtx testreg = SET_DEST (x); register rtx testreg = SET_DEST (x);
while (GET_CODE (x) == SUBREG while (GET_CODE (testreg) == SUBREG
|| GET_CODE (x) == ZERO_EXTRACT || GET_CODE (testreg) == ZERO_EXTRACT
|| GET_CODE (x) == SIGN_EXTRACT || GET_CODE (testreg) == SIGN_EXTRACT
|| GET_CODE (x) == STRICT_LOW_PART) || GET_CODE (testreg) == STRICT_LOW_PART)
testreg = XEXP (testreg, 0); testreg = XEXP (testreg, 0);
if (GET_CODE (testreg) == MEM) if (GET_CODE (testreg) == MEM)
......
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