From d752593b0b407e89220209e10be715a1cf455a52 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 6 Oct 2010 04:37:17 +0000 Subject: [PATCH] rename add some comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115741 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/TableGen/{DagIntSubst.td => Dag.td} | 5 +++++ 1 file changed, 5 insertions(+) rename test/TableGen/{DagIntSubst.td => Dag.td} (63%) diff --git a/test/TableGen/DagIntSubst.td b/test/TableGen/Dag.td similarity index 63% rename from test/TableGen/DagIntSubst.td rename to test/TableGen/Dag.td index 676f0b0270d..8b406a59d34 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 { @@ -12,6 +15,8 @@ def VAL1 : C1<13>; // CHECK-NEXT: dag d = (X1 13) +//===----------------------------------------------------------------------===// +// Substitution of a DAG. def X2; class yclass;