diff options
author | Ian Lance Taylor <iant@google.com> | 2009-05-16 06:54:11 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2009-05-16 06:54:11 +0000 |
commit | 7e5487a214d591ab394310fa2f8840c42b745ee7 (patch) | |
tree | 76d192436d10f2e90d4474a52e7b7f2156c2a5e7 /gcc/tree-eh.c | |
parent | 7d47ae1d6491907d3f6c5c870bb83dceac1551c4 (diff) | |
download | gcc-7e5487a214d591ab394310fa2f8840c42b745ee7.zip gcc-7e5487a214d591ab394310fa2f8840c42b745ee7.tar.gz gcc-7e5487a214d591ab394310fa2f8840c42b745ee7.tar.bz2 |
alias.c (struct alias_set_entry_d): Rename from struct alias_set_entry.
gcc/ChangeLog:
* alias.c (struct alias_set_entry_d): Rename from struct
alias_set_entry. Change all uses.
* except.c (struct call_site_record_d): Rename from struct
call_site_record. Change all uses.
* except.h (struct eh_region_d): Rename from struct eh_region.
Change all uses.
* gcse.c (struct hash_table_d): Rename from struct hash_table.
Change all uses.
* graphite.c (struct ivtype_map_elt_d): Rename fromstruct
ivtype_map_elt. Change all uses.
(struct rename_map_elt_d): Rename fromstruct rename_map_elt.
Change all uses.
(struct ifsese_d): Rename fromstruct ifsese. Change all uses.
* graphite.h (struct name_tree_d): Rename from struct name_tree.
Change all uses.
(struct sese_d): Rename from struct sese. Change all uses.
* omega.h (struct eqn_d): Rename from struct eqn. Change all
uses.
(struct omega_pb_d): Rename from struct omega_pb. Change all
uses.
* optabs.h (struct optab_d): Rename from struct optab. Change all
uses.
(struct convert_optab_d): Rename from struct convert_optab.
Change all uses.
* tree-pass.h (struct ipa_opt_pass_d): Rename fromstruct
ipa_opt_pass. Change all uses.
* tree-predcom.c (struct dref_d): Rename from struct dref. Change
all uses.
* c-decl.c (pushtag): If -Wc++-compat, warn if the tag is already
defined as a typedef.
(grokdeclarator): If -Wc++-compat, warn if a typedef is already
defined as a tag.
gcc/cp/ChangeLog:
* cp-tree.h (enum cp_lvalue_kind_flags): Rename from
cp_lvalue_kind. Change all uses.
(enum base_access_flags): Rename from enum base_access. Change
all uses.
* parser.c (enum cp_parser_flags): Remove enum tag.
gcc/testsuite/ChangeLog:
* gcc.dg/Wcxx-compat-10.c: New testcase.
libcpp/ChangeLog:
* include/cpplib.h (enum cpp_builtin_type): Rename from enum
builtin_type. Change all uses.
From-SVN: r147605
Diffstat (limited to 'gcc/tree-eh.c')
-rw-r--r-- | gcc/tree-eh.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/tree-eh.c b/gcc/tree-eh.c index 204bf7e..6a19bd5 100644 --- a/gcc/tree-eh.c +++ b/gcc/tree-eh.c @@ -87,7 +87,7 @@ struct_ptr_hash (const void *a) of space by only allocating memory for those that can throw. */ static void -record_stmt_eh_region (struct eh_region *region, gimple t) +record_stmt_eh_region (struct eh_region_d *region, gimple t) { if (!region) return; @@ -371,7 +371,7 @@ struct leh_state /* What's "current" while constructing the eh region tree. These correspond to variables of the same name in cfun->eh, which we don't have easy access to. */ - struct eh_region *cur_region; + struct eh_region_d *cur_region; /* Processing of TRY_FINALLY requires a bit more state. This is split out into a separate structure so that we don't have to @@ -395,7 +395,7 @@ struct leh_tf_state struct leh_state *outer; /* The exception region created for it. */ - struct eh_region *region; + struct eh_region_d *region; /* The goto queue. */ struct goto_queue_node *goto_queue; @@ -1646,7 +1646,7 @@ lower_try_finally (struct leh_state *state, gimple tp) static gimple_seq lower_catch (struct leh_state *state, gimple tp) { - struct eh_region *try_region; + struct eh_region_d *try_region; struct leh_state this_state; gimple_stmt_iterator gsi; tree out_label; @@ -1665,7 +1665,7 @@ lower_catch (struct leh_state *state, gimple tp) out_label = NULL; for (gsi = gsi_start (gimple_try_cleanup (tp)); !gsi_end_p (gsi); ) { - struct eh_region *catch_region; + struct eh_region_d *catch_region; tree eh_label; gimple x, gcatch; @@ -1707,7 +1707,7 @@ static gimple_seq lower_eh_filter (struct leh_state *state, gimple tp) { struct leh_state this_state; - struct eh_region *this_region; + struct eh_region_d *this_region; gimple inner; tree eh_label; @@ -1744,7 +1744,7 @@ static gimple_seq lower_cleanup (struct leh_state *state, gimple tp) { struct leh_state this_state; - struct eh_region *this_region; + struct eh_region_d *this_region; struct leh_tf_state fake_tf; gimple_seq result; @@ -1947,7 +1947,7 @@ struct gimple_opt_pass pass_lower_eh = /* Construct EH edges for STMT. */ static void -make_eh_edge (struct eh_region *region, void *data) +make_eh_edge (struct eh_region_d *region, void *data) { gimple stmt; tree lab; @@ -2026,7 +2026,7 @@ redirect_eh_edge (edge e, basic_block new_bb) bool is_resx; bool inlinable = false; tree label = gimple_block_label (new_bb); - struct eh_region *r; + struct eh_region_d *r; if (gimple_code (stmt) == GIMPLE_RESX) { @@ -2066,7 +2066,7 @@ static bool mark_eh_edge_found_error; field, output error if something goes wrong. */ static void -mark_eh_edge (struct eh_region *region, void *data) +mark_eh_edge (struct eh_region_d *region, void *data) { gimple stmt; tree lab; @@ -2958,7 +2958,7 @@ struct update_info operands from DATA->bb_to_remove. */ static void -make_eh_edge_and_update_phi (struct eh_region *region, void *data) +make_eh_edge_and_update_phi (struct eh_region_d *region, void *data) { struct update_info *info = (struct update_info *) data; edge e, e2; |