mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
Code in LoopStrengthReduce.cpp depends on SmallBitVector::size() being size_t
and not unsigned. llvm-svn: 211356
This commit is contained in:
parent
333ef0d2b6
commit
305b1c858b
@ -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
Block a user