diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-06 17:06:26 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-06 17:06:26 +0000 |
commit | 8dfbefd865bd7aed76b7d1f885e3b8d590e62c5a (patch) | |
tree | cc1c9ccf4dc8d7dbfc54939550b893a93bc9f060 /gcc/treestruct.def | |
parent | 77c223c3d6f93d1ed1e1a31b17b91674b9e1778f (diff) | |
download | gcc-8dfbefd865bd7aed76b7d1f885e3b8d590e62c5a.tar.gz |
* tree.c: Include debug.h.
(initialize_tree_contains_struct): New.
(init_ttree): Call it.
(tree_node_structure_for_code): Factor out of ...
(tree_node_structure): ... here.
* treestruct.def (TS_PHI_NODE): Remove.
(TS_GIMPLE_STATEMENT): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149290 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/treestruct.def')
-rw-r--r-- | gcc/treestruct.def | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/treestruct.def b/gcc/treestruct.def index e920a97b010..c56524d708c 100644 --- a/gcc/treestruct.def +++ b/gcc/treestruct.def @@ -20,13 +20,16 @@ along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ /* The format of this file is + DEFTREESTRUCT(enumeration value, printable name). - Each enumeration value should correspond with a single member of union - tree_node. - These enumerator values are used in order to distinguish members of union - tree_node for garbage collection purposes, as well as specifying what structures - contain what other structures in the tree_contains_struct array. */ - + + Each enumeration value should correspond with a single member of + union tree_node. + + These enumerator values are used in order to distinguish members of + union tree_node for garbage collection purposes, as well as + specifying what structures contain what other structures in the + tree_contains_struct array. */ DEFTREESTRUCT(TS_BASE, "base") DEFTREESTRUCT(TS_COMMON, "common") DEFTREESTRUCT(TS_INT_CST, "integer cst") @@ -54,13 +57,10 @@ DEFTREESTRUCT(TS_LIST, "list") DEFTREESTRUCT(TS_VEC, "vec") DEFTREESTRUCT(TS_EXP, "exp") DEFTREESTRUCT(TS_SSA_NAME, "ssa name") -DEFTREESTRUCT(TS_PHI_NODE, "phi node") DEFTREESTRUCT(TS_BLOCK, "block") DEFTREESTRUCT(TS_BINFO, "binfo") DEFTREESTRUCT(TS_STATEMENT_LIST, "statement list") -DEFTREESTRUCT(TS_GIMPLE_STATEMENT, "gimple statement") DEFTREESTRUCT(TS_CONSTRUCTOR, "constructor") DEFTREESTRUCT(TS_OMP_CLAUSE, "omp clause") DEFTREESTRUCT(TS_OPTIMIZATION, "optimization options") DEFTREESTRUCT(TS_TARGET_OPTION, "target options") - |