diff options
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index c3377c8..32a6396 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -5992,13 +5992,13 @@ static GTY ((param_is (union tree_node))) htab_t libfunc_decls; static hashval_t libfunc_decl_hash (const void *entry) { - return htab_hash_string (IDENTIFIER_POINTER (DECL_NAME ((tree) entry))); + return htab_hash_string (IDENTIFIER_POINTER (DECL_NAME ((const_tree) entry))); } static int libfunc_decl_eq (const void *entry1, const void *entry2) { - return DECL_NAME ((tree) entry1) == (tree) entry2; + return DECL_NAME ((const_tree) entry1) == (const_tree) entry2; } rtx |