mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
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:
parent
212e2b9c8d
commit
729aa1dbd3
@ -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