aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/Dag.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-06 04:37:17 +0000
committerChris Lattner <sabre@nondot.org>2010-10-06 04:37:17 +0000
commitd752593b0b407e89220209e10be715a1cf455a52 (patch)
tree93a731536e4cee4219f32ad38a5601003a0457ce /test/TableGen/Dag.td
parent4822509b284459e2b53a291e3b06812fcf91cd70 (diff)
downloadexternal_llvm-d752593b0b407e89220209e10be715a1cf455a52.zip
external_llvm-d752593b0b407e89220209e10be715a1cf455a52.tar.gz
external_llvm-d752593b0b407e89220209e10be715a1cf455a52.tar.bz2
rename add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/Dag.td')
-rw-r--r--test/TableGen/Dag.td35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/TableGen/Dag.td b/test/TableGen/Dag.td
new file mode 100644
index 0000000..8b406a5
--- /dev/null
+++ b/test/TableGen/Dag.td
@@ -0,0 +1,35 @@
+// RUN: tblgen %s | FileCheck %s
+// XFAIL: vg_leak
+
+//===----------------------------------------------------------------------===//
+// Substitution of an int.
+def X1;
+
+class C1<int N> {
+ dag d = (X1 N);
+}
+
+def VAL1 : C1<13>;
+
+// CHECK: def VAL1 {
+// CHECK-NEXT: dag d = (X1 13)
+
+
+//===----------------------------------------------------------------------===//
+// Substitution of a DAG.
+def X2;
+
+class yclass;
+def Y2 : yclass;
+
+class C2<yclass N> {
+ dag d = (X2 N);
+ dag e = (N X2);
+}
+
+def VAL2 : C2<Y2>;
+
+// CHECK: def VAL2 {
+// CHECK-NEXT: dag d = (X2 Y2)
+// CHECK-NEXT: dag e = (Y2 X2)
+