Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / TableGen / ForwardRef.td
blob955cc14248f841d32ede4b3cb5374affd4a7a434
1 // RUN: tblgen %s -o -
2 // XFAIL: vg_leak
4 class bar {
5   list<bar> x;
8 class foo;
9 class foo;
11 class baz { list<foo> y; }
13 class foo {