summaryrefslogtreecommitdiff
path: root/test/TableGen
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-09-30 20:59:52 +0000
committerDavid Greene <greened@obbligato.org>2011-09-30 20:59:52 +0000
commit90b6e346ee45889842977de367eec8c711b598d0 (patch)
tree2cd10bdfc9971604d9ecb12872c9436b7a88892f /test/TableGen
parentf6c8cbba4eae431ea52964205c80a57db498f268 (diff)
downloadllvm-90b6e346ee45889842977de367eec8c711b598d0.tar.gz
llvm-90b6e346ee45889842977de367eec8c711b598d0.tar.bz2
llvm-90b6e346ee45889842977de367eec8c711b598d0.tar.xz
Test More Complicated Lists
Test of indexing lists of lists of lists works. This also exercises some operators. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140884 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen')
-rw-r--r--test/TableGen/LoLoL.td17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/TableGen/LoLoL.td b/test/TableGen/LoLoL.td
new file mode 100644
index 0000000000..0307b399bc
--- /dev/null
+++ b/test/TableGen/LoLoL.td
@@ -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]