1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/TableGen/list-element-bitref.td
Pete Cooper 8cac65e882 Change BitsInit to inherit from TypedInit.
This is useful in a later patch where binary literals such as 0b000 will become BitsInit values instead of IntInit values.

llvm-svn: 215085
2014-08-07 05:47:04 +00:00

16 lines
340 B
TableGen

// RUN: llvm-tblgen %s | FileCheck %s
// XFAIL: vg_leak
class C<list<bits<4>> 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";