[llvm-commits] CVS: llvm/lib/Target/Target.td
Misha Brukman
brukman at cs.uiuc.edu
Mon Aug 9 10:46:17 PDT 2004
Changes in directory llvm/lib/Target:
Target.td updated: 1.29 -> 1.30
---
Log message:
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.
---
Diffs of the changes: (+1 -0)
Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.29 llvm/lib/Target/Target.td:1.30
--- llvm/lib/Target/Target.td:1.29 Sun Aug 1 04:36:44 2004
+++ llvm/lib/Target/Target.td Mon Aug 9 12:46:06 2004
@@ -108,6 +108,7 @@
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.
More information about the llvm-commits
mailing list