1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[ms-inline asm] Use incoming argument rather than hard coding to false.

llvm-svn: 165945
This commit is contained in:
Chad Rosier 2012-10-15 16:50:34 +00:00
parent b1bdc84698
commit aeec5a1023

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