1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
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>;