From f98df77ce31d9b5986c0350c8c9d4e028fc0a49d Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Wed, 9 Jul 2014 03:06:09 +0000 Subject: convert some hash_table to hash_map gcc/ * graphite-htab.h: Use hash_map instead of hash_table. * graphite-clast-to-gimple.c: Adjust. * passes.c: Use hash_map instead of hash_table. * sese.c: Likewise. * sese.h: Remove now unused code. From-SVN: r212382 --- gcc/sese.h | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'gcc/sese.h') diff --git a/gcc/sese.h b/gcc/sese.h index af919f8..e2a6d45 100644 --- a/gcc/sese.h +++ b/gcc/sese.h @@ -249,31 +249,6 @@ if_region_get_condition_block (ifsese if_region) return if_region_entry (if_region)->dest; } -/* Structure containing the mapping between the old names and the new - names used after block copy in the new loop context. */ -typedef struct rename_map_elt_s -{ - tree old_name, expr; -} *rename_map_elt; - - -extern hashval_t rename_map_elt_info (const void *); -extern int eq_rename_map_elts (const void *, const void *); - -/* Constructs a new SCEV_INFO_STR structure for VAR and INSTANTIATED_BELOW. */ - -static inline rename_map_elt -new_rename_map_elt (tree old_name, tree expr) -{ - rename_map_elt res; - - res = XNEW (struct rename_map_elt_s); - res->old_name = old_name; - res->expr = expr; - - return res; -} - /* Free and compute again all the dominators information. */ static inline void -- cgit v1.1