mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 21:27:00 +00:00
SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, created interim RTLIL::SigSpec::chunks_rw()
This commit is contained in:
parent
7bffde6abd
commit
28b3fd05fa
20 changed files with 29 additions and 34 deletions
|
@ -45,9 +45,9 @@ struct BtorDumperConfig
|
|||
struct WireInfo
|
||||
{
|
||||
RTLIL::IdString cell_name;
|
||||
RTLIL::SigChunk *chunk;
|
||||
const RTLIL::SigChunk *chunk;
|
||||
|
||||
WireInfo(RTLIL::IdString c, RTLIL::SigChunk* ch) : cell_name(c), chunk(ch) { }
|
||||
WireInfo(RTLIL::IdString c, const RTLIL::SigChunk* ch) : cell_name(c), chunk(ch) { }
|
||||
};
|
||||
|
||||
struct WireInfoOrder
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue