From 665235b9df56e35a62535e9c09b13d1ff82370a2 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 9 Aug 2004 17:46:06 +0000 Subject: [PATCH] Classes need to have a prefix name, so that they can be tacked on to the pieces that TableGen creates for them, e.g. CodeEmitter, AsmPrinter, etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15579 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Target.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/Target.td b/lib/Target/Target.td index e111f85d0f0..6fada3452e6 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -108,6 +108,7 @@ class RegisterClass regList> { class Instruction { string Name = ""; // The opcode string for this instruction string Namespace = ""; + string ClassPrefix = ""; dag OperandList; // An dag containing the MI operand list. string AsmString = ""; // The .s format to print the instruction with.