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>; + +