OSDN Git Service

2011-12-09 Andrew Pinski <apinski@cavium.com>
authorpinskia <pinskia>
Fri, 9 Dec 2011 19:22:31 +0000 (19:22 +0000)
committerpinskia <pinskia>
Fri, 9 Dec 2011 19:22:31 +0000 (19:22 +0000)
* linespec.c (hash_address_entry): Use iterative_hash_object on each
field rather than the struct itself.

gdb/ChangeLog
gdb/linespec.c

index 9b7503b..6505699 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-09  Andrew Pinski  <apinski@cavium.com>
+
+       * linespec.c (hash_address_entry): Use iterative_hash_object on each
+       field rather than the struct itself.
+
 2011-12-09  Tom Tromey  <tromey@redhat.com>
 
        * breakpoint.c (compare_breakpoints): New function.
index f3afc58..0ac54f7 100644 (file)
@@ -253,8 +253,10 @@ static hashval_t
 hash_address_entry (const void *p)
 {
   const struct address_entry *aep = p;
+  hashval_t hash;
 
-  return iterative_hash_object (*aep, 0);
+  hash = iterative_hash_object (aep->pspace, 0);
+  return iterative_hash_object (aep->addr, hash);
 }
 
 /* An equality function for address_entry.  */