llvm-mirror/test/TableGen/DagIntSubst.ll
2007-01-17 07:59:14 +00:00

11 lines
106 B
LLVM

// RUN: tblgen %s | grep 'dag d = (X 13)'
def X;
class C<int N> {
dag d = (X N);
}
def VAL : C<13>;