diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6293,7 +6293,7 @@ type_hash_hash (const void *item) /* Look in the type hash table for a type isomorphic to TYPE. If one is found, return it. Otherwise return 0. */ -tree +static tree type_hash_lookup (hashval_t hashcode, tree type) { struct type_hash *h, in; @@ -6315,7 +6315,7 @@ type_hash_lookup (hashval_t hashcode, tree type) /* Add an entry to the type-hash-table for a type TYPE whose hash code is HASHCODE. */ -void +static void type_hash_add (hashval_t hashcode, tree type) { struct type_hash *h; |