Removed unused argument.

llvm-svn: 163105
This commit is contained in:
Chad Rosier 2012-09-03 03:16:15 +00:00
parent a353dba17d
commit fd648a0320
1 changed files with 2 additions and 3 deletions

View File

@ -551,11 +551,10 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc,
// Match the MCInstr.
unsigned Kind;
unsigned Opcode;
unsigned ErrorInfo;
SmallVector<llvm::MCInst, 2> 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); }