mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
11 lines
117 B
TableGen
11 lines
117 B
TableGen
|
// RUN: tblgen %s
|
||
|
class x {
|
||
|
field bits<32> A;
|
||
|
}
|
||
|
|
||
|
class y<bits<2> B> : x {
|
||
|
let A{21-20} = B;
|
||
|
}
|
||
|
|
||
|
def z : y<{0,?}>;
|