Code in LoopStrengthReduce.cpp depends on SmallBitVector::size() being size_t

and not unsigned.

llvm-svn: 211356
This commit is contained in:
Yaron Keren 2014-06-20 12:57:44 +00:00
parent 333ef0d2b6
commit 305b1c858b

View File

@ -169,7 +169,7 @@ public:
}
/// size - Returns the number of bits in this bitvector.
size_type size() const {
size_t size() const {
return isSmall() ? getSmallSize() : getPointer()->size();
}