diff options
Diffstat (limited to 'test/TableGen')
-rw-r--r-- | test/TableGen/ListOfList.td | 1 | ||||
-rw-r--r-- | test/TableGen/LoLoL.td | 1 | ||||
-rw-r--r-- | test/TableGen/MultiPat.td | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/test/TableGen/ListOfList.td b/test/TableGen/ListOfList.td index 17cc43b..565a99c 100644 --- a/test/TableGen/ListOfList.td +++ b/test/TableGen/ListOfList.td @@ -1,6 +1,7 @@ // RUN llvm-tblgen %s | FileCheck %s // RUN: llvm-tblgen %s | grep {foo} | count 1 +// XFAIL: vg_leak class Base<string t> { string text = t; diff --git a/test/TableGen/LoLoL.td b/test/TableGen/LoLoL.td index f758e1b..778c960 100644 --- a/test/TableGen/LoLoL.td +++ b/test/TableGen/LoLoL.td @@ -1,4 +1,5 @@ // RUN: llvm-tblgen %s | FileCheck %s +// XFAIL: vg_leak class Base<list<int> v> { list<int> values = v; diff --git a/test/TableGen/MultiPat.td b/test/TableGen/MultiPat.td index b49b06c..b379277 100644 --- a/test/TableGen/MultiPat.td +++ b/test/TableGen/MultiPat.td @@ -1,4 +1,5 @@ // RUN: llvm-tblgen %s | FileCheck %s +// XFAIL: vg_leak class ValueType<int size, int value> { int Size = size; |