Commit 87d4ad08 by Per Bothner Committed by Per Bothner

parse.y (patch_binop): Minor constant folding.


	* parse.y (patch_binop):  Minor constant folding.

	* parse.y (build_current_thisn):  Shorter 'buffer'.

From-SVN: r47588
parent aedcdb65
2001-12-03 Per Bothner <per@bothner.com>
* parse.y (patch_binop): Minor constant folding.
* parse.y (build_current_thisn): Shorter 'buffer'.
2001-12-03 Per Bothner <per@bothner.com>
* decl.c (complete_start_java_method): Now generate TRY_FINALLY_EXPR
instead of CLEANUP_POINT_EXPR and WITH_CLEANUP_EXPR.
* jcf-write.c (generate_bytecode_insns): Remove support for
......
......@@ -8619,7 +8619,7 @@ build_current_thisn (type)
static int saved_type_i = 0;
static int initialized_p;
tree decl;
char buffer [80];
char buffer [24];
int i = 0;
/* Register SAVED_THISN and SAVED_TYPE with the garbage collector. */
......@@ -13770,6 +13770,14 @@ patch_binop (node, wfl_op1, wfl_op2)
error_found = 1;
break;
}
else if (integer_zerop (op1))
{
return code == TRUTH_ANDIF_EXPR ? op1 : op2;
}
else if (integer_onep (op1))
{
return code == TRUTH_ANDIF_EXPR ? op2 : op1;
}
/* The type of the conditional operators is BOOLEAN */
prom_type = boolean_type_node;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment