Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / TableGen / ListSlices.td
blob5848a4e487042660cffd147eab11548e136d6563
1 // RUN: tblgen %s
2 // XFAIL: vg_leak
4 def A {
5   list<int> B = [10, 20, 30, 4, 1, 1231, 20];
8 def B {
9   list<int> X = [10, 20, 30, 4, 1, 1231, 20] [2-4,2,2,0-6];
11   list<int> Y = X[4,5];
12   int Z = X[4];
14   list<int> C = A.B[1-4];
16   list<list<int>> AA = [X, Y];
18   int BB = AA[0][1];