summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-09-03 19:04:35 +0000
committerChad Rosier <mcrosier@apple.com>2012-09-03 19:04:35 +0000
commitefeaae8578ce9173a47f9e3fa5c44b90ae60c5ab (patch)
tree3a3b5f6ac693490076bd57309836b8d3c94307a7 /lib/Target
parent038f3e31276f8cc86d91d0e4513e1a3ddb8509ba (diff)
downloadllvm-efeaae8578ce9173a47f9e3fa5c44b90ae60c5ab.tar.gz
llvm-efeaae8578ce9173a47f9e3fa5c44b90ae60c5ab.tar.bz2
llvm-efeaae8578ce9173a47f9e3fa5c44b90ae60c5ab.tar.xz
[ms-inline asm] Add a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/Mips/AsmParser/MipsAsmParser.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
index deef84408d..f463b7703c 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<MCParsedAsmOperand*> &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;
}