[TableGen] Remove MnemonicContainsDot from AsmParser. It isn't used. NFC

llvm-svn: 256542
This commit is contained in:
Craig Topper 2015-12-29 07:03:30 +00:00
parent 3294966ed7
commit d270501a6e
2 changed files with 0 additions and 4 deletions

View File

@ -936,9 +936,6 @@ class AsmParser {
// ShouldEmitMatchRegisterName - Set to false if the target needs a hand
// written register name matcher
bit ShouldEmitMatchRegisterName = 1;
/// Does the instruction mnemonic allow '.'
bit MnemonicContainsDot = 0;
}
def DefaultAsmParser : AsmParser;

View File

@ -206,7 +206,6 @@ def : ProcessorModel<"p5600", MipsP5600Model, [ImplP5600]>;
def MipsAsmParser : AsmParser {
let ShouldEmitMatchRegisterName = 0;
let MnemonicContainsDot = 1;
}
def MipsAsmParserVariant : AsmParserVariant {