summaryrefslogtreecommitdiff
path: root/test/TableGen/LoLoL.td
blob: f758e1b60476908b29020dc075fdd5be514d3296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: llvm-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]