From 39c8aaa4bfab14d348ffbe515b332f03383eb1e9 Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Thu, 7 Aug 2014 10:44:14 +0000 Subject: convert the rest of the users of pointer_map to hash_map gcc/ * hash-map.h (default_hashmap_traits): Adjust overloads of hash function to not conflict. * alias.c, cfgexpand.c, dse.c, except.h, gimple-expr.c, gimple-ssa-strength-reduction.c, gimple-ssa.h, ifcvt.c, lto-streamer-out.c, lto-streamer.h, tree-affine.c, tree-affine.h, tree-predcom.c, tree-scalar-evolution.c, tree-ssa-loop-im.c, tree-ssa-loop-niter.c, tree-ssa.c, value-prof.c: Use hash_map instead of pointer_map. gcc/cp/ * cp-tree.h, pt.c: Use hash_map instead of pointer_map. gcc/lto/ * lto-partition.c, lto.c: Use hash_map instead of pointer_map. From-SVN: r213703 --- gcc/gimple-ssa-strength-reduction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gimple-ssa-strength-reduction.c') diff --git a/gcc/gimple-ssa-strength-reduction.c b/gcc/gimple-ssa-strength-reduction.c index b13b7f7..a9e0161 100644 --- a/gcc/gimple-ssa-strength-reduction.c +++ b/gcc/gimple-ssa-strength-reduction.c @@ -434,7 +434,7 @@ cand_chain_hasher::equal (const value_type *chain1, const compare_type *chain2) static hash_table *base_cand_map; /* Pointer map used by tree_to_aff_combination_expand. */ -static struct pointer_map_t *name_expansions; +static hash_map *name_expansions; /* Pointer map embodying a mapping from bases to alternative bases. */ static hash_map *alt_base_map; -- cgit v1.1