forked from OSchip/llvm-project
[TableGen] Remove MnemonicContainsDot from AsmParser. It isn't used. NFC
llvm-svn: 256542
This commit is contained in:
parent
3294966ed7
commit
d270501a6e
|
@ -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;
|
||||
|
||||
|
|
|
@ -206,7 +206,6 @@ def : ProcessorModel<"p5600", MipsP5600Model, [ImplP5600]>;
|
|||
|
||||
def MipsAsmParser : AsmParser {
|
||||
let ShouldEmitMatchRegisterName = 0;
|
||||
let MnemonicContainsDot = 1;
|
||||
}
|
||||
|
||||
def MipsAsmParserVariant : AsmParserVariant {
|
||||
|
|
Loading…
Reference in New Issue