Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / TableGen / GeneralList.td
blobca92a213b22888f220b480ec20d9810c339b06b9
1 // RUN: tblgen %s
2 // XFAIL: vg_leak
3 //
4 // Test to make sure that lists work with any data-type
6 class foo {
7   list<int> Test = [1, 2, 3];
8   list<string> Test2 = ["abc", "xyz", "gtq"];