summaryrefslogtreecommitdiffstats
path: root/gcc/java/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r--gcc/java/parse.y16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index 85be4b71bf4..499627152bc 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -13334,10 +13334,10 @@ patch_binop (tree node, tree wfl_op1, tree wfl_op2)
/* Shift int only up to 0x1f and long up to 0x3f */
if (prom_type == int_type_node)
op2 = fold (build2 (BIT_AND_EXPR, int_type_node, op2,
- build_int_cst (NULL_TREE, 0x1f, 0)));
+ build_int_cst (NULL_TREE, 0x1f)));
else
op2 = fold (build2 (BIT_AND_EXPR, int_type_node, op2,
- build_int_cst (NULL_TREE, 0x3f, 0)));
+ build_int_cst (NULL_TREE, 0x3f)));
/* The >>> operator is a >> operating on unsigned quantities */
if (code == URSHIFT_EXPR && ! flag_emit_class_files)
@@ -14032,12 +14032,12 @@ patch_unaryop (tree node, tree wfl_op)
both operands, if really necessary */
if (JINTEGRAL_TYPE_P (op_type))
{
- value = build_int_cst (op_type, 1, 0);
+ value = build_int_cst (op_type, 1);
TREE_TYPE (node) = op_type;
}
else
{
- value = build_int_cst (NULL_TREE, 1, 0);
+ value = build_int_cst (NULL_TREE, 1);
TREE_TYPE (node) =
binary_numeric_promotion (op_type,
TREE_TYPE (value), &op, &value);
@@ -14263,7 +14263,7 @@ patch_cast (tree node, tree wfl_op)
static tree
build_null_of_type (tree type)
{
- tree node = build_int_cst (promote_type (type), 0, 0);
+ tree node = build_int_cst (promote_type (type), 0);
return node;
}
@@ -14345,7 +14345,7 @@ build_newarray_node (tree type, tree dims, int extra_dims)
{
tree node = build3 (NEW_ARRAY_EXPR, NULL_TREE, type,
nreverse (dims),
- build_int_cst (NULL_TREE, extra_dims, 0));
+ build_int_cst (NULL_TREE, extra_dims));
return node;
}
@@ -14444,8 +14444,8 @@ patch_newarray (tree node)
tree_cons (NULL_TREE,
build_class_ref (TREE_TYPE (array_type)),
tree_cons (NULL_TREE,
- build_int_cst (NULL_TREE,
- ndims, 0), dims )),
+ build_int_cst (NULL_TREE, ndims),
+ dims)),
NULL_TREE);
}
OpenPOWER on IntegriCloud