aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2000-10-23 04:40:26 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-10-23 04:40:26 +0000
commitf9808f81c98e92f3d590391f7924585208725c94 (patch)
treea834ffb7437cb8a679af25dbc3ccd37302b72aaf /gcc/tree.def
parent0870bfd6d80b3711972ae5ce17564123727dee53 (diff)
downloadgcc-f9808f81c98e92f3d590391f7924585208725c94.zip
gcc-f9808f81c98e92f3d590391f7924585208725c94.tar.gz
gcc-f9808f81c98e92f3d590391f7924585208725c94.tar.bz2
expr.c (do_preexpand_calls): Remove.
* 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. From-SVN: r37012
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index 28c47d9..c61a5ff 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".