Commit a8c0bbc7 by Richard Henderson Committed by Richard Henderson

* varasm.c (const_desc_rtx_sym_eq): Compare symbol strings.

From-SVN: r77191
parent 18f5be99
2004-02-03 Richard Henderson <rth@redhat.com>
* varasm.c (const_desc_rtx_sym_eq): Compare symbol strings.
2004-02-03 J"orn Rennecke <joern.rennecke@superh.com>
* config.gcc (sh[234]l): Use little endian fragments.
......
......@@ -2617,7 +2617,7 @@ const_desc_rtx_sym_eq (const void *a, const void *b)
{
const struct constant_descriptor_rtx *x = a;
const struct constant_descriptor_rtx *y = b;
return x->sym == y->sym;
return XSTR (x->sym, 0) == XSTR (y->sym, 0);
}
/* This is the worker function for const_rtx_hash, called via for_each_rtx. */
......
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