diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2004-06-15 18:37:34 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2004-06-15 18:37:34 +0000 |
commit | c8a6f15498c274ee708b862f61d8358a2d4c11ea (patch) | |
tree | d933c91f87d843c7ce6592ba3bd9d2b116fc9938 /gcc/tree-inline.c | |
parent | f8cfc6aa070047007c18468b54996c116e593642 (diff) | |
download | gcc-c8a6f15498c274ee708b862f61d8358a2d4c11ea.zip gcc-c8a6f15498c274ee708b862f61d8358a2d4c11ea.tar.gz gcc-c8a6f15498c274ee708b862f61d8358a2d4c11ea.tar.bz2 |
tree-flow-inline.h (stmt_ann): Remove use of is_essa_node.
2004-06-15 Daniel Berlin <dberlin@dberlin.org>
* tree-flow-inline.h (stmt_ann): Remove use of is_essa_node.
* tree-dfa.c (create_stmt_ann): Ditto.
* tree-pretty-print.c (dump_generic_node): Remove E* node handling.
* tree-inline.c (estimate_num_insns_1): Ditto.
* tree.c (tree_size): Ditto.
(make_node_stat): Ditto.
(tree_node_structure): Ditto.
(ephi_node_elt_check_failed): Remove.
(is_essa_node): Ditto.
* tree.def (EPHI_NODE): Ditto.
(EEXIT_NODE): Ditto.
(EUSE_NODE): Ditto.
(EKILL_NODE): Ditto.
* tree.h (EREF_NODE_CHECK): Remove.
(EPHI_NODE_ELT_CHECK): Ditto.
(struct tree_eref_common): Ditto.
(struct tree_euse_node): Ditto.
(struct ephi_arg_d): Ditto.
(struct tree_ephi_node): Ditto.
(ephi_node_elt_check_failed): Remove prototype.
(is_essa_node): Ditto.
(enum tree_node_structure_enum): Remove TS_E*_NODE.
(union tree_node): Remove E*_NODE uses.
From-SVN: r83196
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 39dde67..7d8b0db 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1238,10 +1238,6 @@ estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data) case RETURN_EXPR: case EXIT_EXPR: case LOOP_EXPR: - case EUSE_NODE: - case EKILL_NODE: - case EPHI_NODE: - case EEXIT_NODE: case PHI_NODE: break; /* We don't account constants for now. Assume that the cost is amortized |