Commit 12e0ac36 by Ian Lance Taylor

Fix useless assertion in ^ code.

From-SVN: r171619
parent 58ec5505
...@@ -3814,7 +3814,7 @@ Unary_expression::eval_integer(Operator op, Type* utype, mpz_t uval, mpz_t val, ...@@ -3814,7 +3814,7 @@ Unary_expression::eval_integer(Operator op, Type* utype, mpz_t uval, mpz_t val,
++obits; ++obits;
size_t ocount = ((obits + HOST_BITS_PER_WIDE_INT - 1) size_t ocount = ((obits + HOST_BITS_PER_WIDE_INT - 1)
/ HOST_BITS_PER_WIDE_INT); / HOST_BITS_PER_WIDE_INT);
gcc_assert(ocount <= ocount); gcc_assert(ocount <= count);
for (size_t i = 0; i < ocount; ++i) for (size_t i = 0; i < ocount; ++i)
phwi[i] = ~phwi[i]; phwi[i] = ~phwi[i];
......
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