We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ea54be commit bed3c7eCopy full SHA for bed3c7e
llvm/include/llvm/ADT/BitVector.h
@@ -769,11 +769,6 @@ class BitVector {
769
std::fill(Bits.begin() + NumWords - Count, Bits.begin() + NumWords, 0);
770
}
771
772
- int next_unset_in_word(int WordIndex, BitWord Word) const {
773
- unsigned Result = WordIndex * BITWORD_SIZE + llvm::countr_one(Word);
774
- return Result < size() ? Result : -1;
775
- }
776
-
777
unsigned NumBitWords(unsigned S) const {
778
return (S + BITWORD_SIZE-1) / BITWORD_SIZE;
779
0 commit comments