aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/module.cc
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2022-06-22 07:51:44 -0700
committerNathan Sidwell <nathan@acm.org>2022-06-22 08:21:03 -0700
commitd844478ab47a16c8ae65f253fd1cdc685c7951fc (patch)
tree0096f3e7a735084d5d13158d635eca98f05ddd9c /gcc/cp/module.cc
parentd68d366425369649cb4e25a07752e25a4fff52cf (diff)
downloadgcc-d844478ab47a16c8ae65f253fd1cdc685c7951fc.zip
gcc-d844478ab47a16c8ae65f253fd1cdc685c7951fc.tar.gz
gcc-d844478ab47a16c8ae65f253fd1cdc685c7951fc.tar.bz2
c++: Remove ifdefed code
The only reason I chose to use DECL_UID on this hash table was to make it stable against ASLR and perturbations due to other allocations. It's not required for correctness, as the comment mentions the equality fn uses pointer identity. gcc/cp/ * module.cc (struct duplicate_hash): Remove. (duplicate_hash_map): Adjust.
Diffstat (limited to 'gcc/cp/module.cc')
-rw-r--r--gcc/cp/module.cc16
1 files changed, 1 insertions, 15 deletions
diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc
index b3fbd46..d735d7e 100644
--- a/gcc/cp/module.cc
+++ b/gcc/cp/module.cc
@@ -2829,24 +2829,10 @@ struct merge_key {
}
};
-struct duplicate_hash : nodel_ptr_hash<tree_node>
-{
-#if 0
- /* This breaks variadic bases in the xtreme_header tests. Since ::equal is
- the default pointer_hash::equal, let's use the default hash as well. */
- inline static hashval_t hash (value_type decl)
- {
- if (TREE_CODE (decl) == TREE_BINFO)
- decl = TYPE_NAME (BINFO_TYPE (decl));
- return hashval_t (DECL_UID (decl));
- }
-#endif
-};
-
/* Hashmap of merged duplicates. Usually decls, but can contain
BINFOs. */
typedef hash_map<tree,uintptr_t,
- simple_hashmap_traits<duplicate_hash,uintptr_t> >
+ simple_hashmap_traits<nodel_ptr_hash<tree_node>,uintptr_t> >
duplicate_hash_map;
/* Tree stream reader. Note that reading a stream doesn't mark the