From 619e39bc729a434381537fd5051305b5998004b0 Mon Sep 17 00:00:00 2001 From: Kai Luo Date: Tue, 9 Jul 2019 03:33:04 +0000 Subject: [PATCH] [NFC][PowerPC] Fixed unused variable 'NewInstr'. llvm-svn: 365433 --- llvm/lib/Target/PowerPC/PPCMIPeephole.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp b/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp index 8168268de85c..446246358e96 100644 --- a/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp +++ b/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp @@ -1439,6 +1439,7 @@ bool PPCMIPeephole::combineSEXTAndSHL(MachineInstr &MI, MI.getOperand(0).getReg()) .add(SrcMI->getOperand(1)) .add(MOpSHMI); + (void)NewInstr; LLVM_DEBUG(dbgs() << "TO: "); LLVM_DEBUG(NewInstr->dump());