diff options
author | Trevor Saunders <tsaunders@mozilla.com> | 2014-07-09 03:06:09 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2014-07-09 03:06:09 +0000 |
commit | f98df77ce31d9b5986c0350c8c9d4e028fc0a49d (patch) | |
tree | fe302b0afef5f45efd91e938d8c2eb16e20e1d0a /gcc/sese.h | |
parent | 677f36a639850b44bf9645f75aacc5990e9aa1cb (diff) | |
download | gcc-f98df77ce31d9b5986c0350c8c9d4e028fc0a49d.tar.gz |
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
Diffstat (limited to 'gcc/sese.h')
-rw-r--r-- | gcc/sese.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/sese.h b/gcc/sese.h index af919f83d02..e2a6d455c9f 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 |