Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / TableGen / ListConversion.td
blob222b6140564e9ef2bcd436e10ee5392ef5dd3e62
1 // RUN: tblgen %s
2 // XFAIL: vg_leak
3 class A;
4 class B : A;
6 def b : B;
8 def {
9   list<B> X = [b];
10   list<A> Y = X;