diff options
Diffstat (limited to 'gcc/config/darwin.c')
-rw-r--r-- | gcc/config/darwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 3627ba6..93c6d67 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -477,7 +477,7 @@ typedef struct GTY ((for_user)) machopic_indirection bool used; } machopic_indirection; -struct indirection_hasher : ggc_hasher<machopic_indirection *> +struct indirection_hasher : ggc_ptr_hash<machopic_indirection> { typedef const char *compare_type; static hashval_t hash (machopic_indirection *); @@ -3271,7 +3271,7 @@ typedef struct GTY ((for_user)) cfstring_descriptor { tree constructor; } cfstring_descriptor; -struct cfstring_hasher : ggc_hasher<cfstring_descriptor *> +struct cfstring_hasher : ggc_ptr_hash<cfstring_descriptor> { static hashval_t hash (cfstring_descriptor *); static bool equal (cfstring_descriptor *, cfstring_descriptor *); |