From: Chad Rosier Date: Mon, 3 Sep 2012 19:04:35 +0000 (+0000) Subject: [ms-inline asm] Add a comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=efeaae8578ce9173a47f9e3fa5c44b90ae60c5ab;p=oota-llvm.git [ms-inline asm] Add a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index deef84408dc..f463b7703c7 100644 --- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -106,6 +106,9 @@ GetMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &Operands, unsigned OperandNum) { assert (0 && "GetMCInstOperandNum() not supported by the Mips target."); + // The Mips backend doesn't currently include the matcher implementation, so + // the GetMCInstOperandNumImpl() is undefined. This is a temporary + // work around. return 0; }