diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-23 04:40:26 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-23 04:40:26 +0000 |
commit | bc33ff055378b6d58d4b2c9df56e0f23e7944229 (patch) | |
tree | a834ffb7437cb8a679af25dbc3ccd37302b72aaf /gcc/tree.def | |
parent | f99edf237e55cc7d4ca2a938d4e14c54993e2552 (diff) | |
download | gcc-bc33ff055378b6d58d4b2c9df56e0f23e7944229.tar.gz |
* expr.c (do_preexpand_calls): Remove.
(same_from_p): Don't use CALL_EXPR_RTL.
(expand_expr): Don't call preexpand_calls, or use CALL_EXPR_RTL.
(preexpand_calls): Remove.
* tree.c (first_rtl_op): Remove CALL_EXPR case.
(unsave_expr_1): Likewise.
* tree.def (CALL_EXPR): Give it only two slots.
* tree.h (CALL_EXPR_RTL): Remove.
* optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37012 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 28c47d97a79..c61a5ff578b 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -454,10 +454,8 @@ DEFTREECODE (BIND_EXPR, "bind_expr", 'e', 3) /* Function call. Operand 0 is the function. Operand 1 is the argument list, a list of expressions - made out of a chain of TREE_LIST nodes. - There is no operand 2. That slot is used for the - CALL_EXPR_RTL macro (see preexpand_calls). */ -DEFTREECODE (CALL_EXPR, "call_expr", 'e', 3) + made out of a chain of TREE_LIST nodes. */ +DEFTREECODE (CALL_EXPR, "call_expr", 'e', 2) /* Call a method. Operand 0 is the method, whose type is a METHOD_TYPE. Operand 1 is the expression for "self". |