YouCompleteMe/cpp/llvm/test/TableGen/UnsetBitInit.td

12 lines
140 B
TableGen
Raw Normal View History

2012-07-05 20:51:06 -04:00
// RUN: llvm-tblgen %s
// XFAIL: vg_leak
class x {
field bits<32> A;
}
class y<bits<2> B> : x {
let A{21-20} = B;
}
def z : y<{0,?}>;