aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/DagDefSubst.td
diff options
context:
space:
mode:
Diffstat (limited to 'test/TableGen/DagDefSubst.td')
-rw-r--r--test/TableGen/DagDefSubst.td16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/TableGen/DagDefSubst.td b/test/TableGen/DagDefSubst.td
deleted file mode 100644
index 92a207f..0000000
--- a/test/TableGen/DagDefSubst.td
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: tblgen %s | grep {dag d = (X Y)}
-// RUN: tblgen %s | grep {dag e = (Y X)}
-// XFAIL: vg_leak
-def X;
-
-class yclass;
-def Y : yclass;
-
-class C<yclass N> {
- dag d = (X N);
- dag e = (N X);
-}
-
-def VAL : C<Y>;
-
-