X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / TableGen / ListArgsSimple.td
blobb3b207825e8b66b1a1242e064b7c45f3df2e7032
1 // RUN: tblgen %s
3 class B<int v> {
4   int val = v;
7 class BB<list<int> vals> : B<vals[0]>;
8 class BBB<list<int> vals> : BB<vals>;