From: Chad Rosier Date: Mon, 15 Oct 2012 16:50:34 +0000 (+0000) Subject: [ms-inline asm] Use incoming argument rather than hard coding to false. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=655fa1225b49dc3d8c2f1eed049eaf47ceb3ae8d;p=oota-llvm.git [ms-inline asm] Use incoming argument rather than hard coding to false. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165945 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp index e39edb0afc7..9e28a3d7d09 100644 --- a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp +++ b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp @@ -319,7 +319,7 @@ MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode, bool MatchingInlineAsm) { MCInst Inst; switch (MatchInstructionImpl(Operands, Inst, ErrorInfo, - /*matchingInlineAsm*/ false)) { + MatchingInlineAsm)) { default: break; case Match_Success: Out.EmitInstruction(Inst);