diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-07 21:23:10 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-07 21:23:10 +0000 |
| commit | 651396d6490d06108333425fdd0d43cc31238675 (patch) | |
| tree | f326960d7493b5dc8cb7ddf3232ed6a0d9281070 /gcc/tree-inline.c | |
| parent | 7fcf593786536c9ce6a574ea12e5a44cfeca19f3 (diff) | |
| download | ppe42-gcc-651396d6490d06108333425fdd0d43cc31238675.tar.gz ppe42-gcc-651396d6490d06108333425fdd0d43cc31238675.zip | |
gcc/
* c-common.c, expr.c, fold-const.c, print-tree.c,
tree-gimple.c, tree-inline.c, tree-pretty-print.c,
tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c: Replace uses of
first_rtl_op with TREE_CODE_LENGTH.
* tree.c (first_rtl_op): Remove.
Replace uses of first_rtl_op with TREE_CODE_LENGTH.
* tree.h: Remove the prototype for first_rtl_op.
gcc/cp/
* pt.c: Replace a use of first_rtl_op with TREE_CODE_LENGTH.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91818 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-inline.c')
| -rw-r--r-- | gcc/tree-inline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 218764996f0..0c72fe662e5 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1391,7 +1391,7 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data) if (TREE_CODE (*tp) == TARGET_EXPR) { #if 0 - int i, len = first_rtl_op (TARGET_EXPR); + int i, len = TREE_CODE_LENGTH (TARGET_EXPR); /* We're walking our own subtrees. */ *walk_subtrees = 0; @@ -2088,7 +2088,7 @@ walk_tree (tree *tp, walk_tree_fn func, void *data, struct pointer_set_t *pset) int i, len; /* Walk over all the sub-trees of this operand. */ - len = first_rtl_op (code); + len = TREE_CODE_LENGTH (code); /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same. But, we only want to walk once. */ if (code == TARGET_EXPR |

