From ebc90544ce29938953cc8cf6865e7f17f0cf8b01 Mon Sep 17 00:00:00 2001 From: apbianco Date: Wed, 7 Nov 2001 20:50:00 +0000 Subject: [PATCH] 2001-11-07 Alexandre Petit-Bianco * parse.y (patch_assignment): Removed unused third argument. (java_complete_lhs): Removed unused third argument to patch_assignment. ( http://gcc.gnu.org/ml/gcc-patches/2001-11/msg00469.html ) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46834 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/ChangeLog | 5 +++++ gcc/java/parse.y | 9 ++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index ae4fcb0..2af05a1 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2001-11-07 Alexandre Petit-Bianco + + * parse.y (patch_assignment): Removed unused third argument. + (java_complete_lhs): Removed unused third argument to patch_assignment. + 2001-11-06 Neil Booth * lang.c: Include langhooks-def.h. diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 089d2c3..58a2b30 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -164,7 +164,7 @@ static tree build_new_invocation PARAMS ((tree, tree)); static tree build_assignment PARAMS ((int, int, tree, tree)); static tree build_binop PARAMS ((enum tree_code, int, tree, tree)); static int check_final_assignment PARAMS ((tree ,tree)); -static tree patch_assignment PARAMS ((tree, tree, tree )); +static tree patch_assignment PARAMS ((tree, tree)); static tree patch_binop PARAMS ((tree, tree, tree)); static tree build_unaryop PARAMS ((int, int, tree)); static tree build_incdec PARAMS ((int, int, tree, int)); @@ -11941,7 +11941,7 @@ java_complete_lhs (node) /* Prepare node for patch_assignment */ TREE_OPERAND (node, 1) = value; /* Call patch assignment to verify the assignment */ - if (patch_assignment (node, wfl_op1, value) == error_mark_node) + if (patch_assignment (node, wfl_op1) == error_mark_node) return error_mark_node; /* Set DECL_INITIAL properly (a conversion might have been decided by patch_assignment) and return the @@ -12040,7 +12040,7 @@ java_complete_lhs (node) /* Can't assign to a (blank) final. */ if (check_final_assignment (TREE_OPERAND (node, 0), wfl_op1)) return error_mark_node; - node = patch_assignment (node, wfl_op1, wfl_op2); + node = patch_assignment (node, wfl_op1); /* Reorganize the tree if necessary. */ if (flag && (!JREFERENCE_TYPE_P (TREE_TYPE (node)) || JSTRING_P (TREE_TYPE (node)))) @@ -12790,10 +12790,9 @@ check_final_assignment (lvalue, wfl) /* 15.25 Assignment operators. */ static tree -patch_assignment (node, wfl_op1, wfl_op2) +patch_assignment (node, wfl_op1) tree node; tree wfl_op1; - tree wfl_op2; { tree rhs = TREE_OPERAND (node, 1); tree lvalue = TREE_OPERAND (node, 0), llvalue; -- 2.7.4