New testcase
authorChris Lattner <sabre@nondot.org>
Sun, 10 Aug 2003 22:02:44 +0000 (22:02 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 10 Aug 2003 22:02:44 +0000 (22:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7711 91177308-0d34-0410-b5e6-96231b3b80d8

test/TableGen/TreeNames.td [new file with mode: 0644]

diff --git a/test/TableGen/TreeNames.td b/test/TableGen/TreeNames.td
new file mode 100644 (file)
index 0000000..05a3298
--- /dev/null
@@ -0,0 +1,17 @@
+// This tests to make sure we can parse tree patterns with names.
+// RUN: tblgen %s
+
+class TreeNode;
+class RegisterClass;
+
+def set  : TreeNode;
+def plus : TreeNode;
+def imm  : TreeNode;
+def R32  : RegisterClass;
+
+class Inst<dag T> {
+  dag Pattern = T;
+}
+
+def ADDrr32 : Inst<(set R32, (plus R32:$A, R32:$def))>;
+