Remove unused variable
authorMatt Beaumont-Gay <matthewbg@google.com>
Wed, 30 Nov 2011 19:53:11 +0000 (19:53 +0000)
committerMatt Beaumont-Gay <matthewbg@google.com>
Wed, 30 Nov 2011 19:53:11 +0000 (19:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145517 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/Disassembler/ARMDisassembler.cpp

index 2dc4d12f1773c7d7c28f24daa1bc5e8bd0b43198..0107f288b168b081b4264b2fc85c4dc6178825fd 100644 (file)
@@ -2409,7 +2409,6 @@ static DecodeStatus DecodeVLD1DupInstruction(llvm::MCInst &Inst, unsigned Insn,
   unsigned Rm = fieldFromInstruction32(Insn, 0, 4);
   unsigned align = fieldFromInstruction32(Insn, 4, 1);
   unsigned size = fieldFromInstruction32(Insn, 6, 2);
-  unsigned regs = fieldFromInstruction32(Insn, 5, 1) + 1;
 
   align *= (1 << size);
 
@@ -4102,4 +4101,3 @@ static DecodeStatus DecodeVCVTQ(llvm::MCInst &Inst, unsigned Insn,
 
   return S;
 }
-