Skip to content

Commit

Permalink
Use a 2 bit pointer in ValueHandleBase::PrevPair; NFC
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sanjoy committed May 1, 2017
1 parent a4b9b9f commit b297bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/include/llvm/IR/ValueHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ValueHandleBase {
}

private:
PointerIntPair<ValueHandleBase**, 3, HandleBaseKind> PrevPair;
PointerIntPair<ValueHandleBase**, 2, HandleBaseKind> PrevPair;
ValueHandleBase *Next;

Value *Val;
Expand Down

0 comments on commit b297bff

Please sign in to comment.