From: Chris Lattner Date: Tue, 31 Jan 2006 06:01:40 +0000 (+0000) Subject: new testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5def058f386faf3a0e8977fdd5c4178539d101de;p=oota-llvm.git new testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25835 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/TableGen/DagIntSubst.ll b/test/TableGen/DagIntSubst.ll new file mode 100644 index 00000000000..b9522f1f57f --- /dev/null +++ b/test/TableGen/DagIntSubst.ll @@ -0,0 +1,10 @@ +// RUN: tblgen %s | grep 'dag d = (X 13)' +def X; + +class C { + dag d = (X N); +} + +def VAL : C<13>; + +