diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-01 22:35:42 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-01 22:35:42 +0000 |
commit | eff665b74f08f74b4d910a3797bcc4fb6c255691 (patch) | |
tree | 01a72a7a29f8e1046cda441db6c683b0feeb510d /gcc/tree-ssa-loop-ivopts.c | |
parent | 0b5dc8b53229dd77c976c58b483364efd9228845 (diff) | |
download | gcc-eff665b74f08f74b4d910a3797bcc4fb6c255691.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111617 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-ivopts.c')
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index ab13dbb6817..9e310416c34 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -5342,8 +5342,8 @@ get_ref_tag (tree ref, tree orig) if (TREE_CODE (var) == INDIRECT_REF) { - /* In case the base is a dereference of a pointer, first check its name - mem tag, and if it does not have one, use type mem tag. */ + /* If the base is a dereference of a pointer, first check its name memory + tag. If it does not have one, use its symbol memory tag. */ var = TREE_OPERAND (var, 0); if (TREE_CODE (var) != SSA_NAME) return NULL_TREE; @@ -5356,7 +5356,7 @@ get_ref_tag (tree ref, tree orig) } var = SSA_NAME_VAR (var); - tag = var_ann (var)->type_mem_tag; + tag = var_ann (var)->symbol_mem_tag; gcc_assert (tag != NULL_TREE); return tag; } @@ -5365,7 +5365,7 @@ get_ref_tag (tree ref, tree orig) if (!DECL_P (var)) return NULL_TREE; - tag = var_ann (var)->type_mem_tag; + tag = var_ann (var)->symbol_mem_tag; if (tag) return tag; |