diff options
Diffstat (limited to 'gcc/tree-ssa-loop-niter.c')
-rw-r--r-- | gcc/tree-ssa-loop-niter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c index c14e13c7248..2ec2e0ce510 100644 --- a/gcc/tree-ssa-loop-niter.c +++ b/gcc/tree-ssa-loop-niter.c @@ -525,10 +525,10 @@ inverse (tree x, tree mask) rslt = build_int_cst (type, 1); for (; ctr; ctr--) { - rslt = int_const_binop (MULT_EXPR, rslt, x, 0); - x = int_const_binop (MULT_EXPR, x, x, 0); + rslt = int_const_binop (MULT_EXPR, rslt, x); + x = int_const_binop (MULT_EXPR, x, x); } - rslt = int_const_binop (BIT_AND_EXPR, rslt, mask, 0); + rslt = int_const_binop (BIT_AND_EXPR, rslt, mask); } return rslt; |