aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/DagIntSubst.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
commit72ab97076f51f372265588404c33792c2f2cba44 (patch)
tree93a731536e4cee4219f32ad38a5601003a0457ce /test/TableGen/DagIntSubst.td
parentaccd6b72eb814a65de84c62ec8130de929d353ba (diff)
downloadexternal_llvm-72ab97076f51f372265588404c33792c2f2cba44.zip
external_llvm-72ab97076f51f372265588404c33792c2f2cba44.tar.gz
external_llvm-72ab97076f51f372265588404c33792c2f2cba44.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/DagIntSubst.td')
-rw-r--r--test/TableGen/DagIntSubst.td30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/TableGen/DagIntSubst.td b/test/TableGen/DagIntSubst.td
deleted file mode 100644
index 676f0b0..0000000
--- a/test/TableGen/DagIntSubst.td
+++ /dev/null
@@ -1,30 +0,0 @@
-// RUN: tblgen %s | FileCheck %s
-// XFAIL: vg_leak
-def X1;
-
-class C1<int N> {
- dag d = (X1 N);
-}
-
-def VAL1 : C1<13>;
-
-// CHECK: def VAL1 {
-// CHECK-NEXT: dag d = (X1 13)
-
-
-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)
-