forked from OSchip/llvm-project
Code in LoopStrengthReduce.cpp depends on SmallBitVector::size() being size_t
and not unsigned. llvm-svn: 211356
This commit is contained in:
parent
e8a2875774
commit
3eb83a0d67
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue