aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-hash-traits.h
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2015-11-06 09:46:17 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2015-11-06 09:46:17 +0000
commit8ba66467b90333d01cec3dc47a1ee12734d3e04b (patch)
treec420f4d8330c9214aad5a8793331bd811c06a5fc /gcc/tree-hash-traits.h
parent7a5e4956cc026cba54159d5c764486ac4151db85 (diff)
downloadgcc-8ba66467b90333d01cec3dc47a1ee12734d3e04b.zip
gcc-8ba66467b90333d01cec3dc47a1ee12734d3e04b.tar.gz
gcc-8ba66467b90333d01cec3dc47a1ee12734d3e04b.tar.bz2
tree-hash-traits.h (tree_operand_hash): Provide equal, not equal_keys.
2015-11-06 Richard Biener <rguenther@suse.de> * tree-hash-traits.h (tree_operand_hash): Provide equal, not equal_keys. From-SVN: r229838
Diffstat (limited to 'gcc/tree-hash-traits.h')
-rw-r--r--gcc/tree-hash-traits.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/tree-hash-traits.h b/gcc/tree-hash-traits.h
index 1edc49e..5143a9d 100644
--- a/gcc/tree-hash-traits.h
+++ b/gcc/tree-hash-traits.h
@@ -23,18 +23,20 @@ along with GCC; see the file COPYING3. If not see
/* Hash for trees based on operand_equal_p. */
struct tree_operand_hash : ggc_ptr_hash <tree_node>
{
- static inline hashval_t hash (const_tree);
- static inline bool equal_keys (const_tree, const_tree);
+ static inline hashval_t hash (const value_type &);
+ static inline bool equal (const value_type &,
+ const compare_type &);
};
inline hashval_t
-tree_operand_hash::hash (const_tree t)
+tree_operand_hash::hash (const value_type &t)
{
return iterative_hash_expr (t, 0);
}
inline bool
-tree_operand_hash::equal_keys (const_tree t1, const_tree t2)
+tree_operand_hash::equal (const value_type &t1,
+ const compare_type &t2)
{
return operand_equal_p (t1, t2, 0);
}