llvm-6502/test/TableGen/list-element-bitref.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

16 lines
340 B
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class C<list<bits<8>> L> {
bits<2> V0 = L[0]{1-0};
bits<2> V1 = L[1]{3-2};
string V2 = !if(L[0]{0}, "Odd", "Even");
}
def c0 : C<[0b0101, 0b1010]>;
// CHECK: def c0
// CHECK-NEXT: bits<2> V0 = { 0, 1 };
// CHECK-NEXT: bits<2> V1 = { 1, 0 };
// CHECK-NEXT: string V2 = "Odd";