Fix useless assertion in ^ code.

From-SVN: r171619
This commit is contained in:
Ian Lance Taylor 2011-03-28 18:08:50 +00:00
parent 58ec5505de
commit 12e0ac3601
1 changed files with 1 additions and 1 deletions

View File

@ -3814,7 +3814,7 @@ Unary_expression::eval_integer(Operator op, Type* utype, mpz_t uval, mpz_t val,
++obits;
size_t ocount = ((obits + HOST_BITS_PER_WIDE_INT - 1)
/ HOST_BITS_PER_WIDE_INT);
gcc_assert(ocount <= ocount);
gcc_assert(ocount <= count);
for (size_t i = 0; i < ocount; ++i)
phwi[i] = ~phwi[i];