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:
Sanjoy Das 2017-05-01 17:36:12 +00:00
parent a4b9b9f42a
commit b297bff1cc
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ protected:
}
private:
PointerIntPair<ValueHandleBase**, 3, HandleBaseKind> PrevPair;
PointerIntPair<ValueHandleBase**, 2, HandleBaseKind> PrevPair;
ValueHandleBase *Next;
Value *Val;