You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 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,?}>;
|