aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2004-11-21 08:02:30 -0700
committerJeff Law <law@gcc.gnu.org>2004-11-21 08:02:30 -0700
commitdb02564e0a85c02865edf7db08d9fc343aa6b375 (patch)
tree46b40153746b80709661cb3998bd61282bdde0a0 /gcc
parent20fff8cd7c51aa392a6dac477002afdf68df5efd (diff)
downloadgcc-db02564e0a85c02865edf7db08d9fc343aa6b375.zip
gcc-db02564e0a85c02865edf7db08d9fc343aa6b375.tar.gz
gcc-db02564e0a85c02865edf7db08d9fc343aa6b375.tar.bz2
tree-ssa-threadupdate.c (redirection_data_hash): Use the index of the destination block for the hash value rather than hashing a...
* tree-ssa-threadupdate.c (redirection_data_hash): Use the index of the destination block for the hash value rather than hashing a pointer. From-SVN: r90980
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-ssa-threadupdate.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7601d20..b4f0c52 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2004-11-21 Jeff Law <law@redhat.com>
+
+ * tree-ssa-threadupdate.c (redirection_data_hash): Use the
+ index of the destination block for the hash value rather than
+ hashing a pointer.
+
2004-11-20 Joseph S. Myers <joseph@codesourcery.com>
* c-typeck.c (build_array_ref): Don't check for index == 0. Make
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c
index 8d205fd..7d2788d 100644
--- a/gcc/tree-ssa-threadupdate.c
+++ b/gcc/tree-ssa-threadupdate.c
@@ -203,7 +203,7 @@ static hashval_t
redirection_data_hash (const void *p)
{
edge e = ((struct redirection_data *)p)->outgoing_edge;
- return htab_hash_pointer (e);
+ return e->dest->index;
}
static int