1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Test More Complicated Lists

Test of indexing lists of lists of lists works.  This also exercises
some operators.

llvm-svn: 140884
This commit is contained in:
David Greene 2011-09-30 20:59:52 +00:00
parent c5830e015f
commit 7a9ac03042

17
test/TableGen/LoLoL.td Normal file
View File

@ -0,0 +1,17 @@
// RUN: tblgen %s | FileCheck %s
class Base<list<int> v> {
list<int> values = v;
}
class Derived<list<int> v> : Base<!if(!empty(v),[0],v)>;
multiclass Multi<list<list<list<int>>> v> {
def ONE : Derived<!if(!empty(v),[]<int>,!if(!empty(!head(v)),[]<int>,v[0][0]))>;
def TWO : Derived<!if(!empty(v),[]<int>,!if(!empty(!tail(v)),!if(!empty(!head(v)),[]<int>,v[0][0]),v[1][0]))>;
}
defm Def : Multi<[[[]],[[1, 2, 3]]]>;
// CHECK: values = [0]
// CHECK: values = [1, 2, 3]