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

and not unsigned.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Yaron Keren 2014-06-20 12:57:44 +00:00
parent 212e2b9c8d
commit 729aa1dbd3

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();
}