In order to avoid reprocessing a register more than once, we need to add it
[llvm/msp430.git] / test / TableGen / ForwardRef.td
blob2056b1faff35dcdc2d123a3a3c4fef173847646d
1 // RUN: tblgen %s -o -
3 class bar {
4   list<bar> x;
7 class foo;
8 class foo;
10 class baz { list<foo> y; }
12 class foo {