mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-29 06:30:30 +00:00
Fix typo, reported by Eitan Adler!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
77caaf0fc0
commit
46c313fb5a
@ -465,7 +465,7 @@ public:
|
|||||||
bool isSpillSlotObjectIndex(int ObjectIdx) const {
|
bool isSpillSlotObjectIndex(int ObjectIdx) const {
|
||||||
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
|
||||||
"Invalid Object Idx!");
|
"Invalid Object Idx!");
|
||||||
return Objects[ObjectIdx+NumFixedObjects].isSpillSlot;;
|
return Objects[ObjectIdx+NumFixedObjects].isSpillSlot;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// isDeadObjectIndex - Returns true if the specified index corresponds to
|
/// isDeadObjectIndex - Returns true if the specified index corresponds to
|
||||||
|
Loading…
Reference in New Issue
Block a user