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-gimple.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-gimple.c')
| -rw-r--r-- | gcc/tree-gimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-gimple.c b/gcc/tree-gimple.c index 0d52611f867..e1cbc334c92 100644 --- a/gcc/tree-gimple.c +++ b/gcc/tree-gimple.c @@ -443,7 +443,7 @@ void recalculate_side_effects (tree t) { enum tree_code code = TREE_CODE (t); - int fro = first_rtl_op (code); + int fro = TREE_CODE_LENGTH (code); int i; switch (TREE_CODE_CLASS (code)) |

