(rtx_renumbered_equal_p, case CONST_INT): Use INTVAL, not XINT.
From-SVN: r5534
This commit is contained in:
parent
e51edaa389
commit
38b3167eb6
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user