From 30e4179aa1394206500abf459e09b35c35e00390 Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Mon, 1 May 2017 17:36:12 +0000 Subject: [PATCH] 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301817 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/ValueHandle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/ValueHandle.h b/include/llvm/IR/ValueHandle.h index 1370802d6cb..393618d5511 100644 --- a/include/llvm/IR/ValueHandle.h +++ b/include/llvm/IR/ValueHandle.h @@ -46,7 +46,7 @@ protected: } private: - PointerIntPair PrevPair; + PointerIntPair PrevPair; ValueHandleBase *Next; Value *Val; -- 2.40.0