[stackmaps] Remove an unneeded member variable [NFC]

llvm-svn: 279590
This commit is contained in:
Philip Reames
2016-08-23 23:58:08 +00:00
parent aafa0b0529
commit d06a1b4cdc
2 changed files with 3 additions and 5 deletions

View File

@@ -43,8 +43,7 @@ StackMapOpers::StackMapOpers(const MachineInstr *MI)
PatchPointOpers::PatchPointOpers(const MachineInstr *MI)
: MI(MI), HasDef(MI->getOperand(0).isReg() && MI->getOperand(0).isDef() &&
!MI->getOperand(0).isImplicit()),
IsAnyReg(getCallingConv() == CallingConv::AnyReg) {
!MI->getOperand(0).isImplicit()) {
#ifndef NDEBUG
unsigned CheckStartIdx = 0, e = MI->getNumOperands();
while (CheckStartIdx < e && MI->getOperand(CheckStartIdx).isReg() &&