Commit f54d4924 by Richard Kenner

(canon_hash, exp_equiv_p): Refer to string in SYMBOL_REF with XSTR,

not XEXP.

From-SVN: r7650
parent 48199e32
......@@ -1901,7 +1901,7 @@ canon_hash (x, mode)
case SYMBOL_REF:
hash
+= ((unsigned) SYMBOL_REF << 7) + (unsigned HOST_WIDE_INT) XEXP (x, 0);
+= ((unsigned) SYMBOL_REF << 7) + (unsigned HOST_WIDE_INT) XSTR (x, 0);
return hash;
case MEM:
......@@ -2078,9 +2078,11 @@ exp_equiv_p (x, y, validate, equal_values)
return INTVAL (x) == INTVAL (y);
case LABEL_REF:
case SYMBOL_REF:
return XEXP (x, 0) == XEXP (y, 0);
case SYMBOL_REF:
return XSTR (x, 0) == XSTR (y, 0);
case REG:
{
int regno = REGNO (y);
......
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