forked from OSchip/llvm-project
Use a 2 bit pointer in ValueHandleBase::PrevPair; NFC
This was an omission in r301813. I had made the supporting changes to make this happen, but I forgot to actually update the PrevPair declaration. llvm-svn: 301817
This commit is contained in:
parent
a4b9b9f42a
commit
b297bff1cc
|
@ -46,7 +46,7 @@ protected:
|
|||
}
|
||||
|
||||
private:
|
||||
PointerIntPair<ValueHandleBase**, 3, HandleBaseKind> PrevPair;
|
||||
PointerIntPair<ValueHandleBase**, 2, HandleBaseKind> PrevPair;
|
||||
ValueHandleBase *Next;
|
||||
|
||||
Value *Val;
|
||||
|
|
Loading…
Reference in New Issue