From b297bff1cc974023a49d6ad898badf78a08692c3 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. llvm-svn: 301817 --- llvm/include/llvm/IR/ValueHandle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/IR/ValueHandle.h b/llvm/include/llvm/IR/ValueHandle.h index 1370802d6cb375..393618d5511b3f 100644 --- a/llvm/include/llvm/IR/ValueHandle.h +++ b/llvm/include/llvm/IR/ValueHandle.h @@ -46,7 +46,7 @@ class ValueHandleBase { } private: - PointerIntPair PrevPair; + PointerIntPair PrevPair; ValueHandleBase *Next; Value *Val;