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/lto-streamer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/lto-streamer.h') diff --git a/gcc/lto-streamer.h b/gcc/lto-streamer.h index 7cab1cb..f304ba2 100644 --- a/gcc/lto-streamer.h +++ b/gcc/lto-streamer.h @@ -561,7 +561,7 @@ struct GTY(()) lto_file_decl_data struct gcov_ctr_summary GTY((skip)) profile_info; /* Map assigning declarations their resolutions. */ - pointer_map_t * GTY((skip)) resolution_map; + hash_map * GTY((skip)) resolution_map; }; typedef struct lto_file_decl_data *lto_file_decl_data_ptr; -- cgit v1.1