[TableGen] Modify the AsmMatcherEmitter to only apply the table growth from r252440...
[oota-llvm.git] / include / llvm / Target / Target.td
index 79046b2b7352b34519b2886b38c9a4ae311010be..c869341c384fe8faeb1d16938889bcbdffb21260 100644 (file)
@@ -936,6 +936,10 @@ class AsmParser {
   // ShouldEmitMatchRegisterName - Set to false if the target needs a hand
   // written register name matcher
   bit ShouldEmitMatchRegisterName = 1;
+
+  // HasMnemonicFirst - Set to false if target instructions don't always
+  // start with a mnemonic as the first token.
+  bit HasMnemonicFirst = 1;
 }
 def DefaultAsmParser : AsmParser;