diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-05 17:26:05 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-05 17:26:05 +0000 |
commit | 35cc02b5c80ac6738c1a3362a822e3d7e4d0c587 (patch) | |
tree | 32d3ee1ddfcad180d619d756a84eeb0df779a6a2 /gcc/tree-flow-inline.h | |
parent | fc297ba47e780c3659434d04f3c299b705154d5f (diff) | |
download | gcc-35cc02b5c80ac6738c1a3362a822e3d7e4d0c587.tar.gz |
Merge gimple-tuples-branch into mainline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119546 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 5040375bf76..f19faa1c4ff 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -194,9 +194,10 @@ var_ann (tree t) gcc_assert (t); gcc_assert (DECL_P (t)); gcc_assert (TREE_CODE (t) != FUNCTION_DECL); - gcc_assert (!t->common.ann || t->common.ann->common.type == VAR_ANN); + gcc_assert (!t->base.ann + || t->base.ann->common.type == VAR_ANN); - return (var_ann_t) t->common.ann; + return (var_ann_t) t->base.ann; } /* Return the variable annotation for T, which must be a _DECL node. @@ -215,9 +216,10 @@ function_ann (tree t) { gcc_assert (t); gcc_assert (TREE_CODE (t) == FUNCTION_DECL); - gcc_assert (!t->common.ann || t->common.ann->common.type == FUNCTION_ANN); + gcc_assert (!t->base.ann + || t->base.ann->common.type == FUNCTION_ANN); - return (function_ann_t) t->common.ann; + return (function_ann_t) t->base.ann; } /* Return the function annotation for T, which must be a FUNCTION_DECL node. @@ -226,7 +228,7 @@ static inline function_ann_t get_function_ann (tree var) { function_ann_t ann = function_ann (var); - gcc_assert (!var->common.ann || var->common.ann->common.type == FUNCTION_ANN); + gcc_assert (!var->base.ann || var->base.ann->common.type == FUNCTION_ANN); return (ann) ? ann : create_function_ann (var); } @@ -238,7 +240,7 @@ has_stmt_ann (tree t) #ifdef ENABLE_CHECKING gcc_assert (is_gimple_stmt (t)); #endif - return t->common.ann && t->common.ann->common.type == STMT_ANN; + return t->base.ann && t->base.ann->common.type == STMT_ANN; } /* Return the statement annotation for T, which must be a statement @@ -249,8 +251,8 @@ stmt_ann (tree t) #ifdef ENABLE_CHECKING gcc_assert (is_gimple_stmt (t)); #endif - gcc_assert (!t->common.ann || t->common.ann->common.type == STMT_ANN); - return (stmt_ann_t) t->common.ann; + gcc_assert (!t->base.ann || t->base.ann->common.type == STMT_ANN); + return (stmt_ann_t) t->base.ann; } /* Return the statement annotation for T, which must be a statement @@ -868,7 +870,7 @@ mark_non_addressable (tree var) static inline tree_ann_common_t tree_common_ann (tree t) { - return &t->common.ann->common; + return &t->base.ann->common; } /* Return a common annotation for T. Create the constant annotation if it |