* linespec.c (hash_address_entry): Use iterative_hash_object on each
field rather than the struct itself.
+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.
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. */