Commit 38b3167e by Richard Kenner

(rtx_renumbered_equal_p, case CONST_INT): Use INTVAL, not XINT.

From-SVN: r5534
parent e51edaa3
......@@ -3771,7 +3771,7 @@ rtx_renumbered_equal_p (x, y)
return 0;
case CONST_INT:
return XINT (x, 0) == XINT (y, 0);
return INTVAL (x) == INTVAL (y);
case LABEL_REF:
/* We can't assume nonlocal labels have their following insns yet. */
......
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