diff options
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r-- | gcc/java/parse.y | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 2112b71..217f74c 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -2678,7 +2678,7 @@ pop_current_osb (ctxp) Add mode documentation here. FIXME */ /* Helper function. Create a new parser context. With - COPY_FROM_PREVIOUS set to a non zero value, content of the previous + COPY_FROM_PREVIOUS set to a nonzero value, content of the previous context is copied, otherwise, the new context is zeroed. The newly created context becomes the current one. */ @@ -6499,7 +6499,7 @@ java_check_regular_methods (class_decl) abort (); } -/* Return a non zero value if the `throws' clause of METHOD (if any) +/* Return a nonzero value if the `throws' clause of METHOD (if any) is incompatible with the `throws' clause of FOUND (if any). */ static void @@ -8238,7 +8238,7 @@ build_outer_field_access (id, decl) return resolve_expression_name (access, NULL); } -/* Return a non zero value if NODE describes an outer field inner +/* Return a nonzero value if NODE describes an outer field inner access. */ static int @@ -8274,7 +8274,7 @@ outer_field_access_p (type, decl) return 0; } -/* Return a non zero value if NODE represents an outer field inner +/* Return a nonzero value if NODE represents an outer field inner access that was been already expanded. As a side effect, it returns the name of the field being accessed and the argument passed to the access function, suitable for a regeneration of the access method @@ -10402,7 +10402,7 @@ patch_method_invocation (patch, primary, where, from_super, this$0 (the immediate outer context) to access$0(access$0(...(this$0))). - maybe_use_access_method returns a non zero value if the + maybe_use_access_method returns a nonzero value if the this_arg has to be moved into the (then generated) stub argument list. In the meantime, the selected function might have be replaced by a generated stub. */ @@ -10643,7 +10643,7 @@ maybe_use_access_method (is_super_init, mdecl, this_arg) *mdecl = md; *this_arg = ta; - /* Returnin a non zero value indicates we were doing a non static + /* Returnin a nonzero value indicates we were doing a non static method invokation that is now a static invocation. It will have callee displace `this' to insert it in the regular argument list. */ @@ -12294,7 +12294,7 @@ java_complete_lhs (node) return node; } -/* Complete function call's argument. Return a non zero value is an +/* Complete function call's argument. Return a nonzero value is an error was found. */ static int @@ -13136,7 +13136,7 @@ do_unary_numeric_promotion (arg) return arg; } -/* Return a non zero value if SOURCE can be converted into DEST using +/* Return a nonzero value if SOURCE can be converted into DEST using the method invocation conversion rule (5.3). */ static int valid_method_invocation_conversion_p (dest, source) @@ -13235,7 +13235,7 @@ java_decl_equiv (var_acc1, var_acc2) && TREE_OPERAND (var_acc1, 1) == TREE_OPERAND (var_acc2, 1)); } -/* Return a non zero value if CODE is one of the operators that can be +/* Return a nonzero value if CODE is one of the operators that can be used in conjunction with the `=' operator in a compound assignment. */ static int @@ -14936,7 +14936,7 @@ build_new_loop (loop_body) BODY end of this labeled block) INCREMENT (if any) - REVERSED, if non zero, tells that the loop condition expr comes + REVERSED, if nonzero, tells that the loop condition expr comes after the body, like in the do-while loop. To obtain a loop, the loop body structure described above is |