diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-02 11:34:54 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-02 11:34:54 +0000 |
commit | 06ecf4884b35f5ee5b211f0c2f753d5d4eee2481 (patch) | |
tree | b20f9df1d7e2cb3a642d2fab604f827c7d23712a /gcc/except.h | |
parent | 431205b753bfa26d1711e40ce478d9e92fd157da (diff) | |
download | gcc-06ecf4884b35f5ee5b211f0c2f753d5d4eee2481.tar.gz |
convert many uses of pointer_map to hash_map
gcc/c-family/
* cilk.c: Use hash_map instead of pointer_map.
gcc/c/
* c-typeck.c: Use hash_map instead of pointer_map.
gcc/cp/
* optimize.c, semantics.c: Use hash_map instead of pointer_map.
gcc/
* hash-map.h (default_hashmap_traits::mark_key_deleted):
Fix cast.
(hash_map::remove): New method.
(hash_map::traverse): New method.
* cgraph.h, except.c, except.h, gimple-ssa-strength-reduction.c,
ipa-utils.c, lto-cgraph.c, lto-streamer.h, omp-low.c, predict.c,
tree-cfg.c, tree-cfgcleanup.c, tree-eh.c, tree-eh.h, tree-inline.c,
tree-inline.h, tree-nested.c, tree-sra.c, tree-ssa-loop-im.c,
tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-structalias.c,
tree-ssa.c, tree-ssa.h, var-tracking.c: Use hash_map instead of
pointer_map.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213517 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/except.h b/gcc/except.h index bab13e10cbe..5c2aa3de939 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -25,6 +25,7 @@ along with GCC; see the file COPYING3. If not see # define GCC_EXCEPT_H #endif +#include "hash-map.h" #include "hashtab.h" struct function; @@ -249,7 +250,7 @@ extern rtx expand_builtin_extend_pointer (tree); extern void expand_dw2_landing_pad_for_region (eh_region); typedef tree (*duplicate_eh_regions_map) (tree, void *); -extern struct pointer_map_t *duplicate_eh_regions +extern hash_map<void *, void *> *duplicate_eh_regions (struct function *, eh_region, int, duplicate_eh_regions_map, void *); extern void sjlj_emit_function_exit_after (rtx); |