diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-21 15:02:30 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-21 15:02:30 +0000 |
commit | 8824bd284e96c646d1933cd45bad0103a73eea0d (patch) | |
tree | 46b40153746b80709661cb3998bd61282bdde0a0 /gcc/tree-ssa-threadupdate.c | |
parent | 6b5eba3069bfaf87535fcf2d75a566fc4d038ff3 (diff) | |
download | gcc-8824bd284e96c646d1933cd45bad0103a73eea0d.tar.gz |
* tree-ssa-threadupdate.c (redirection_data_hash): Use the
index of the destination block for the hash value rather than
hashing a pointer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90980 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-threadupdate.c')
-rw-r--r-- | gcc/tree-ssa-threadupdate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c index 8d205fdf384..7d2788d6ae3 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 |