aboutsummaryrefslogtreecommitdiff
path: root/gcc/treestruct.def
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2009-07-06 13:06:26 -0400
committerDiego Novillo <dnovillo@gcc.gnu.org>2009-07-06 13:06:26 -0400
commitd251bfca1967ec494827ba26f009f7623eea2975 (patch)
treecc1c9ccf4dc8d7dbfc54939550b893a93bc9f060 /gcc/treestruct.def
parente923c8ea8cd61a186e7082a12864a97df0dde748 (diff)
downloadgcc-d251bfca1967ec494827ba26f009f7623eea2975.zip
gcc-d251bfca1967ec494827ba26f009f7623eea2975.tar.gz
gcc-d251bfca1967ec494827ba26f009f7623eea2975.tar.bz2
tree.c: Include debug.h.
* 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. From-SVN: r149290
Diffstat (limited to 'gcc/treestruct.def')
-rw-r--r--gcc/treestruct.def18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/treestruct.def b/gcc/treestruct.def
index e920a97..c56524d 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")
-