aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/DagDefSubst.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-10-06 04:36:30 +0000
committerChris Lattner <sabre@nondot.org>2010-10-06 04:36:30 +0000
commitaccd6b72eb814a65de84c62ec8130de929d353ba (patch)
treee5bf61eb09aead1095489b3f6a7018bd4b9c5121 /test/TableGen/DagDefSubst.td
parent8abe2bd8e65180c952b13c549fd27a8e2608c6c6 (diff)
downloadexternal_llvm-accd6b72eb814a65de84c62ec8130de929d353ba.zip
external_llvm-accd6b72eb814a65de84c62ec8130de929d353ba.tar.gz
external_llvm-accd6b72eb814a65de84c62ec8130de929d353ba.tar.bz2
filecheckize
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115740 91177308-0d34-0410-b5e6-96231b3b80d8
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>;
-
-