[llvm] r301413 - [AVR] Remove an unused local variable
Dylan McKay via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 26 07:47:27 PDT 2017
Author: dylanmckay
Date: Wed Apr 26 09:47:27 2017
New Revision: 301413
URL: http://llvm.org/viewvc/llvm-project?rev=301413&view=rev
Log:
[AVR] Remove an unused local variable
Modified:
llvm/trunk/lib/Target/AVR/AVRExpandPseudoInsts.cpp
Modified: llvm/trunk/lib/Target/AVR/AVRExpandPseudoInsts.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AVR/AVRExpandPseudoInsts.cpp?rev=301413&r1=301412&r2=301413&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AVR/AVRExpandPseudoInsts.cpp (original)
+++ llvm/trunk/lib/Target/AVR/AVRExpandPseudoInsts.cpp Wed Apr 26 09:47:27 2017
@@ -971,7 +971,6 @@ bool AVRExpandPseudo::expand<AVR::STWPtr
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;
More information about the llvm-commits
mailing list