llvm-6502/test/TableGen/LoLoL.td
NAKAMURA Takumi a22657f457 Mark 36 tests as XFAIL:vg_leak in llvm/test/TableGen.
In historical reason, tblgen is not strictly required to be free from memory leaks.
For now, I mark them as XFAIL, they could be fixed, though.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194353 91177308-0d34-0410-b5e6-96231b3b80d8
2013-11-10 14:26:08 +00:00

19 lines
502 B
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
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]