aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/UnsetBitInit.td
blob: 91342ecb96635ae3b0d3db55c5e0e36388e8bf6a (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: tblgen %s
class x {
  field bits<32> A;
}

class y<bits<2> B> : x {
  let A{21-20} = B;
}

def z : y<{0,?}>;