summaryrefslogtreecommitdiff
path: root/test/TableGen
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
parent4822509b284459e2b53a291e3b06812fcf91cd70 (diff)
downloadllvm-d752593b0b407e89220209e10be715a1cf455a52.tar.gz
llvm-d752593b0b407e89220209e10be715a1cf455a52.tar.bz2
llvm-d752593b0b407e89220209e10be715a1cf455a52.tar.xz
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')
-rw-r--r--test/TableGen/Dag.td (renamed from test/TableGen/DagIntSubst.td)5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/TableGen/DagIntSubst.td b/test/TableGen/Dag.td
index 676f0b0270..8b406a59d3 100644
--- a/test/TableGen/DagIntSubst.td
+++ b/test/TableGen/Dag.td
@@ -1,5 +1,8 @@
// RUN: tblgen %s | FileCheck %s
// XFAIL: vg_leak
+
+//===----------------------------------------------------------------------===//
+// Substitution of an int.
def X1;
class C1<int N> {
@@ -12,6 +15,8 @@ def VAL1 : C1<13>;
// CHECK-NEXT: dag d = (X1 13)
+//===----------------------------------------------------------------------===//
+// Substitution of a DAG.
def X2;
class yclass;