[ms-inline asm] Use incoming argument rather than hard coding to false.
authorChad Rosier <mcrosier@apple.com>
Mon, 15 Oct 2012 16:50:34 +0000 (16:50 +0000)
committerChad Rosier <mcrosier@apple.com>
Mon, 15 Oct 2012 16:50:34 +0000 (16:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165945 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp

index e39edb0afc79839d4d5d82ae6c8a4e2dc2ef3b45..9e28a3d7d09d21d00d95da6d39c7a3acdcfbf75b 100644 (file)
@@ -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);