mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 05:00:26 +00:00
getActiveWords should return the number of words, not the index of the
highest active words. Increment its result by one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34713 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ff60576646
commit
84b4eeccc7
@ -450,7 +450,7 @@ public:
|
||||
/// APInt. This is used in conjunction with getActiveData to extract the raw
|
||||
/// value of the APInt.
|
||||
inline uint32_t getActiveWords() const {
|
||||
return whichWord(getActiveBits()-1);
|
||||
return whichWord(getActiveBits()-1) + 1;
|
||||
}
|
||||
|
||||
/// This function returns a pointer to the internal storage of the APInt.
|
||||
|
Loading…
Reference in New Issue
Block a user