diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1999-02-02 04:06:59 -0800 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1999-02-02 04:06:59 -0800 |
commit | bccaf73a0589a218b90f430c3471cd12ebcdf97e (patch) | |
tree | 8802dd0bd8fd7128360334e64a734ab0574aae58 /gcc/java/parse.y | |
parent | 7221f080227636b16826313a5148999c777d8b67 (diff) | |
download | gcc-bccaf73a0589a218b90f430c3471cd12ebcdf97e.zip gcc-bccaf73a0589a218b90f430c3471cd12ebcdf97e.tar.gz gcc-bccaf73a0589a218b90f430c3471cd12ebcdf97e.tar.bz2 |
parse.y (patch_method_invocation): Handle calling static methods...
d
* parse.y (patch_method_invocation): Handle calling static methods,
even in the form EXPR.METHOD(ARGS), not just TYPE.METHOD(ARGS).
* parse.y (java_complete_lhs): Don't complain about unreachable
exit condition in a do-while statement.
From-SVN: r24968
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r-- | gcc/java/parse.y | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 73c56b1..ac8f03e 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -6632,6 +6632,7 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) tree list; int is_static_flag = 0; int is_super_init = 0; + tree this_arg = NULL_TREE; /* Should be overriden if everything goes well. Otherwise, if something fails, it should keep this value. It stop the @@ -6729,7 +6730,8 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) identifier, args); /* 4- Add the field as an argument */ - args = tree_cons (NULL_TREE, field, nreverse (args)); + args = nreverse (args); + this_arg = field; } /* IDENTIFIER_WFL will be used to report any problem further */ @@ -6824,8 +6826,8 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) returned by the object allocator. If method is resolved as a primary, use the primary otherwise use the current THIS. */ args = nreverse (args); - if (!METHOD_STATIC (list) && TREE_CODE (patch) != NEW_CLASS_EXPR) - args = tree_cons (NULL_TREE, primary ? primary : current_this, args); + if (TREE_CODE (patch) != NEW_CLASS_EXPR) + this_arg = primary ? primary : current_this; } /* Merge point of all resolution schemes. If we have nothing, this @@ -6850,6 +6852,8 @@ patch_method_invocation (patch, primary, where, is_static, ret_decl) check_deprecation (wfl, list); is_static_flag = METHOD_STATIC (list); + if (! METHOD_STATIC (list) && this_arg != NULL_TREE) + args = tree_cons (NULL_TREE, this_arg, args); /* In the context of an explicit constructor invocation, we can't invoke any method relying on `this'. Exceptions are: we're @@ -7727,10 +7731,18 @@ java_complete_lhs (node) TREE_OPERAND (node, 0) = nn = java_complete_tree (TREE_OPERAND (node, 0)); if (! CAN_COMPLETE_NORMALLY (nn) && TREE_CODE (nn) != ERROR_MARK - && TREE_OPERAND (node, 1) != empty_stmt_node) - { - SET_WFL_OPERATOR (wfl_operator, node, wfl_op2); - parse_error_context (wfl_operator, "Unreachable statement"); + && wfl_op2 != empty_stmt_node) + { + /* An unreachable condition in a do-while statement + is *not* (technically) an unreachable statement. */ + nn = wfl_op2; + if (TREE_CODE (nn) == EXPR_WITH_FILE_LOCATION) + nn = EXPR_WFL_NODE (nn); + if (TREE_CODE (nn) != EXIT_EXPR) + { + SET_WFL_OPERATOR (wfl_operator, node, wfl_op2); + parse_error_context (wfl_operator, "Unreachable statement"); + } } TREE_OPERAND (node, 1) = java_complete_tree (TREE_OPERAND (node, 1)); if (TREE_OPERAND (node, 1) == error_mark_node) |