From: Ahmed Bougacha Date: Mon, 28 Oct 2013 18:19:04 +0000 (+0000) Subject: TableGen: remove unused variable. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1799684671805069cecdc2765b00b751fdbce19b;p=llvm TableGen: remove unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193527 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/CodeGenDAGPatterns.cpp b/utils/TableGen/CodeGenDAGPatterns.cpp index 823f4376432..717090ae01e 100644 --- a/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/utils/TableGen/CodeGenDAGPatterns.cpp @@ -2881,6 +2881,7 @@ void CodeGenDAGPatterns::ParseInstructions() { CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]); const DAGInstruction &DI = parseInstructionPattern(CGI, LI, Instructions); + (void)DI; DEBUG(DI.getPattern()->dump()); }