From: Chad Rosier Date: Mon, 3 Sep 2012 03:16:15 +0000 (+0000) Subject: Removed unused argument. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7065c52fc53ec3106a97b7c8d373df431f3bd4f3;p=clang Removed unused argument. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163105 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaStmtAsm.cpp b/lib/Sema/SemaStmtAsm.cpp index bdd2cbce95..d3d646d246 100644 --- a/lib/Sema/SemaStmtAsm.cpp +++ b/lib/Sema/SemaStmtAsm.cpp @@ -551,11 +551,10 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, // Match the MCInstr. unsigned Kind; - unsigned Opcode; unsigned ErrorInfo; SmallVector Instrs; - HadError = TargetParser->MatchInstruction(IDLoc, Kind, Opcode, Operands, - Instrs, ErrorInfo, + HadError = TargetParser->MatchInstruction(IDLoc, Kind, Operands, Instrs, + ErrorInfo, /*matchingInlineAsm*/ true); // If we had an error parsing the operands, fail gracefully. if (HadError) { DEF_SIMPLE_MSASM; return Owned(NS); }