From: Dylan McKay Date: Wed, 26 Apr 2017 14:47:27 +0000 (+0000) Subject: [AVR] Remove an unused local variable X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=180ce98a0d6cc95ab9e745e8fb23759afd1021f8;p=llvm [AVR] Remove an unused local variable git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301413 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AVR/AVRExpandPseudoInsts.cpp b/lib/Target/AVR/AVRExpandPseudoInsts.cpp index efa5ac61e74..540e05a9299 100644 --- a/lib/Target/AVR/AVRExpandPseudoInsts.cpp +++ b/lib/Target/AVR/AVRExpandPseudoInsts.cpp @@ -971,7 +971,6 @@ bool AVRExpandPseudo::expand(Block &MBB, BlockIt MBBI) { unsigned OpLo, OpHi, SrcLoReg, SrcHiReg; unsigned DstReg = MI.getOperand(0).getReg(); unsigned SrcReg = MI.getOperand(1).getReg(); - bool DstIsKill = MI.getOperand(0).isKill(); bool SrcIsKill = MI.getOperand(1).isKill(); OpLo = AVR::STPtrRr; OpHi = AVR::STDPtrQRr;