From ec6b26b955a7a5c2d41bf65396a14a5531ac3638 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Fri, 26 Jun 2015 17:07:27 +0000 Subject: [PATCH] Fix unused variable from r240792. The variable 'I' wasn't used when assertions were disabled. This commit ensures that 'I' is used outside of an assert. llvm-svn: 240797 --- llvm/lib/CodeGen/MIRPrinter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index f9595f8..9446849 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -90,6 +90,7 @@ void MIRPrinter::print(const MachineFunction &MF) { // map back to the correct MBBs when parsing the output. assert(MBB.getNumber() == I++ && "Can't print MBBs that aren't sequentially numbered"); + (void)I; yaml::MachineBasicBlock YamlMBB; convert(YamlMBB, MBB); YamlMF.BasicBlocks.push_back(YamlMBB); -- 2.7.4