diff options
author | Chris Lattner <sabre@nondot.org> | 2010-10-06 04:37:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-10-06 04:37:17 +0000 |
commit | d752593b0b407e89220209e10be715a1cf455a52 (patch) | |
tree | 93a731536e4cee4219f32ad38a5601003a0457ce /test/TableGen | |
parent | 4822509b284459e2b53a291e3b06812fcf91cd70 (diff) | |
download | external_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')
-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 676f0b0..8b406a5 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; |