aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-ssa.h
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2014-08-07 10:44:14 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2014-08-07 10:44:14 +0000
commit39c8aaa4bfab14d348ffbe515b332f03383eb1e9 (patch)
treee1ee8dbd0c20ebb30d7feede4036d428ac99a76f /gcc/gimple-ssa.h
parent66b5e890ec57bcd04ccde2b69cdd88810697667e (diff)
downloadgcc-39c8aaa4bfab14d348ffbe515b332f03383eb1e9.zip
gcc-39c8aaa4bfab14d348ffbe515b332f03383eb1e9.tar.gz
gcc-39c8aaa4bfab14d348ffbe515b332f03383eb1e9.tar.bz2
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
Diffstat (limited to 'gcc/gimple-ssa.h')
-rw-r--r--gcc/gimple-ssa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/gimple-ssa.h b/gcc/gimple-ssa.h
index 904f002..d2e62a9 100644
--- a/gcc/gimple-ssa.h
+++ b/gcc/gimple-ssa.h
@@ -21,6 +21,7 @@ along with GCC; see the file COPYING3. If not see
#ifndef GCC_GIMPLE_SSA_H
#define GCC_GIMPLE_SSA_H
+#include "hash-map.h"
#include "tree-ssa-operands.h"
/* This structure is used to map a gimple statement to a label,
@@ -53,7 +54,7 @@ struct GTY(()) gimple_df {
/* A map of decls to artificial ssa-names that point to the partition
of the decl. */
- struct pointer_map_t * GTY((skip(""))) decls_to_pointers;
+ hash_map<tree, tree> * GTY((skip(""))) decls_to_pointers;
/* Free list of SSA_NAMEs. */
vec<tree, va_gc> *free_ssanames;