aboutsummaryrefslogtreecommitdiff
path: root/gcc/passes.c
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2006-03-01 22:35:42 +0000
committerDiego Novillo <dnovillo@gcc.gnu.org>2006-03-01 17:35:42 -0500
commit18cd8a03f87fb12895109b72832cbdcc27b39c69 (patch)
tree01a72a7a29f8e1046cda441db6c683b0feeb510d /gcc/passes.c
parent61321991ff5f055015750ddf36444705b9921464 (diff)
downloadgcc-18cd8a03f87fb12895109b72832cbdcc27b39c69.zip
gcc-18cd8a03f87fb12895109b72832cbdcc27b39c69.tar.gz
gcc-18cd8a03f87fb12895109b72832cbdcc27b39c69.tar.bz2
tree.def (SYMBOL_MEMORY_TAG): Rename from TYPE_MEMORY_TAG.
* tree.def (SYMBOL_MEMORY_TAG): Rename from TYPE_MEMORY_TAG. Update all users. * tree-pass.h (PROP_smt_usage): Rename from PROP_tmt_usage. Update all users. (TODO_update_smt_usage): Rename from TODO_update_tmt_usage. Update all users. * tree.h (SMT_USED_ALONE): Rename from TMT_USED_ALONE. Update all users. * tree-flow.h (struct var_ann_d): Rename field 'type_mem_tag' to 'symbol_mem_tag'. Update all users. * doc/tree-ssa.texi: Update documentation to reflect TMT->SMT rename. From-SVN: r111617
Diffstat (limited to 'gcc/passes.c')
-rw-r--r--gcc/passes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/passes.c b/gcc/passes.c
index 4b30d57..0babab7 100644
--- a/gcc/passes.c
+++ b/gcc/passes.c
@@ -718,8 +718,8 @@ execute_todo (unsigned int flags)
if (!flags)
return;
- /* Always recalculate TMT usage before doing anything else. */
- if (flags & TODO_update_tmt_usage)
+ /* Always recalculate SMT usage before doing anything else. */
+ if (flags & TODO_update_smt_usage)
recalculate_used_alone ();
/* Always cleanup the CFG before trying to update SSA . */
@@ -825,7 +825,7 @@ execute_one_pass (struct tree_opt_pass *pass)
gcc_assert ((curr_properties & pass->properties_required)
== pass->properties_required);
- if (pass->properties_destroyed & PROP_tmt_usage)
+ if (pass->properties_destroyed & PROP_smt_usage)
updating_used_alone = true;
/* If a dump file name is present, open it if enabled. */
@@ -894,7 +894,7 @@ execute_one_pass (struct tree_opt_pass *pass)
dump_file = NULL;
}
- if (pass->properties_destroyed & PROP_tmt_usage)
+ if (pass->properties_destroyed & PROP_smt_usage)
updating_used_alone = false;
return true;