From: Evan Cheng Date: Thu, 15 Feb 2007 19:29:05 +0000 (+0000) Subject: Missing a ; X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=852b4baf47e987ff2f2cf547aba23ac89d091ede;p=oota-llvm.git Missing a ; git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34322 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/BitVector.h b/include/llvm/ADT/BitVector.h index 937296b487a..fb0768979f4 100644 --- a/include/llvm/ADT/BitVector.h +++ b/include/llvm/ADT/BitVector.h @@ -98,7 +98,7 @@ public: else if (sizeof(BitWord) == 8) NumBits += CountPopulation_64(Bits[i]); else - assert(0 && "Unsupported!") + assert(0 && "Unsupported!"); return NumBits; } @@ -160,8 +160,7 @@ public: init_words(&Bits[OldCapacity], (Capacity-OldCapacity), t); } Size = N; - if (t) - clear_unused_bits(); + clear_unused_bits(); } void reserve(unsigned N) {