[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
This commit is contained in:
Chad Rosier 2012-10-15 16:50:34 +00:00
parent 0919f22dec
commit 655fa1225b

View 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);