* varasm.c (const_desc_rtx_sym_eq): Compare symbol strings.
authorRichard Henderson <rth@redhat.com>
Tue, 3 Feb 2004 21:24:39 +0000 (13:24 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 3 Feb 2004 21:24:39 +0000 (13:24 -0800)
From-SVN: r77191

gcc/ChangeLog
gcc/varasm.c

index 144acac..daf843d 100644 (file)
@@ -1,3 +1,7 @@
+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.
index 27f2f34..91ca435 100644 (file)
@@ -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.  */