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/tree-ssa-loop-im.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree-ssa-loop-im.c') diff --git a/gcc/tree-ssa-loop-im.c b/gcc/tree-ssa-loop-im.c index 0cbb3ae..6239a70 100644 --- a/gcc/tree-ssa-loop-im.c +++ b/gcc/tree-ssa-loop-im.c @@ -200,7 +200,7 @@ static struct vec all_refs_stored_in_loop; /* Cache for expanding memory addresses. */ - struct pointer_map_t *ttae_cache; + hash_map *ttae_cache; } memory_accesses; /* Obstack for the bitmaps in the above data structures. */ @@ -1610,7 +1610,7 @@ analyze_memory_references (void) static bool mem_refs_may_alias_p (mem_ref_p mem1, mem_ref_p mem2, - struct pointer_map_t **ttae_cache) + hash_map **ttae_cache) { /* Perform BASE + OFFSET analysis -- if MEM1 and MEM2 are based on the same object and their offset differ in such a way that the locations cannot -- cgit v1.1