Remove dead variable.
authorBill Wendling <isanbard@gmail.com>
Mon, 28 Dec 2009 01:36:02 +0000 (01:36 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 28 Dec 2009 01:36:02 +0000 (01:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92184 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrInfo.cpp

index 223ad11c6504abd282d7c74d65b2fadfb8ad317a..e555cd176cdf87adf718de888590a39359f455a8 100644 (file)
@@ -2587,7 +2587,6 @@ bool X86InstrInfo::unfoldMemoryOperand(MachineFunction &MF, MachineInstr *MI,
     MemOp2RegOpTable.find((unsigned*)MI->getOpcode());
   if (I == MemOp2RegOpTable.end())
     return false;
-  DebugLoc dl = MI->getDebugLoc();
   unsigned Opc = I->second.first;
   unsigned Index = I->second.second & 0xf;
   bool FoldedLoad = I->second.second & (1 << 4);