diff options
Diffstat (limited to 'gcc/tree-ssa-threadupdate.c')
-rw-r--r-- | gcc/tree-ssa-threadupdate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c index 2b018f8..4b19022 100644 --- a/gcc/tree-ssa-threadupdate.c +++ b/gcc/tree-ssa-threadupdate.c @@ -125,7 +125,7 @@ struct el may have many incoming edges threaded to the same outgoing edge. This can be naturally implemented with a hash table. */ -struct redirection_data : typed_free_remove<redirection_data> +struct redirection_data : free_ptr_hash<redirection_data> { /* We support wiring up two block duplicates in a jump threading path. @@ -150,8 +150,6 @@ struct redirection_data : typed_free_remove<redirection_data> struct el *incoming_edges; /* hash_table support. */ - typedef redirection_data *value_type; - typedef redirection_data *compare_type; static inline hashval_t hash (const redirection_data *); static inline int equal (const redirection_data *, const redirection_data *); }; |