aboutsummaryrefslogtreecommitdiff
path: root/test/TableGen/DagIntSubst.ll
blob: b9522f1f57ffb7e95f6924c0f36da402c250deda (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: tblgen %s | grep 'dag d = (X 13)'
def X;

class C<int N> {
  dag d = (X N);
}

def VAL : C<13>;