summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/AsmParser
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-08-06 23:01:10 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-08-06 23:01:10 +0000
commit6b034bb3ae3f6e1f3831bfc24f90e84b9578944c (patch)
tree074e6b30487409afa94269d66175a6835368da8b /lib/Target/Mips/AsmParser
parent55a1a590bf0cadf88dfbef2aab6948ffec35c1c3 (diff)
downloadllvm-6b034bb3ae3f6e1f3831bfc24f90e84b9578944c.tar.gz
llvm-6b034bb3ae3f6e1f3831bfc24f90e84b9578944c.tar.bz2
llvm-6b034bb3ae3f6e1f3831bfc24f90e84b9578944c.tar.xz
[mips] Mark instructions defined in Mips64InstrInfo.td that are duplicates of
instructions defined in MipsInstrInfo.td as codegen-only instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/AsmParser')
-rw-r--r--lib/Target/Mips/AsmParser/MipsAsmParser.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
index 4b419ad9e2..9e28f2cf97 100644
--- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+++ b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
@@ -1473,9 +1473,6 @@ bool MipsAsmParser::searchSymbolAlias(
MipsAsmParser::OperandMatchResultTy
MipsAsmParser::parseHWRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
- if (isMips64())
- return MatchOperand_NoMatch;
-
// If the first token is not '$' we have error.
if (Parser.getTok().isNot(AsmToken::Dollar))
return MatchOperand_NoMatch;