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 | 805b74d6501e67bd4ef9fa4b13774b5be43cb26b (patch) | |
tree | 0af6672ac12de2e5c34bcfe961359d6ae1c6d717 /llvm | |
parent | 7d5bb96723ad3080deb872b550bda4ef51c5effd (diff) | |
download | bcm5719-llvm-805b74d6501e67bd4ef9fa4b13774b5be43cb26b.tar.gz bcm5719-llvm-805b74d6501e67bd4ef9fa4b13774b5be43cb26b.zip |
rename add some comments.
llvm-svn: 115741
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/TableGen/Dag.td (renamed from llvm/test/TableGen/DagIntSubst.td) | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/test/TableGen/DagIntSubst.td b/llvm/test/TableGen/Dag.td index 676f0b0270d..8b406a59d34 100644 --- a/llvm/test/TableGen/DagIntSubst.td +++ b/llvm/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; |