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/expr.c | |
parent | 7fcf593786536c9ce6a574ea12e5a44cfeca19f3 (diff) | |
download | gcc-651396d6490d06108333425fdd0d43cc31238675.tar.gz |
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/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 44b3c4a9fdf..d594671658e 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5944,7 +5944,7 @@ safe_from_p (rtx x, tree exp, int top_p) if (exp_rtl) break; - nops = first_rtl_op (TREE_CODE (exp)); + nops = TREE_CODE_LENGTH (TREE_CODE (exp)); for (i = 0; i < nops; i++) if (TREE_OPERAND (exp, i) != 0 && ! safe_from_p (x, TREE_OPERAND (exp, i), 0)) |