summaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-17 13:25:21 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-17 13:25:21 +0000
commit8d8fcb5759cbf2894819dc8db56432685506a39d (patch)
tree5f3f6a8759b6ccdf197cdaa3fee3d777aa69cbe7 /gcc/tree.def
parent86222d67c22dc020638711f06d573c06f484a070 (diff)
downloadgcc-8d8fcb5759cbf2894819dc8db56432685506a39d.tar.gz
2003-07-17 Steven Bosscher <steven@gcc.gnu.org>
* c-common.c (c_estimate_num_insns_1): Don't handle METHOD_CALL_EXPR. * expr.c (safe_from_p): Likewise. * gengtype.c (adjust_field_tree_exp): Likewise. * stmt.c (warn_if_unused_value): Likewise * tree.c (first_rtl_op): Likewise. * tree.def: Don't define METHOD_CALL_EXPR. * java/lang.c (java_estimate_num_insns_1): Don't handle METHOD_CALL_EXPR. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69511 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index a62206f33fb..056f5d095be 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -474,11 +474,6 @@ DEFTREECODE (BIND_EXPR, "bind_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".
- Operand 2 is the list of explicit arguments. */
-DEFTREECODE (METHOD_CALL_EXPR, "method_call_expr", 'e', 4)
-
/* Specify a value to compute along with its corresponding cleanup.
Operand 0 argument is an expression whose value needs a cleanup.
Operand 1 is the cleanup expression for the object.