mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Using std::vector<RTLIL::State> instead of RTLIL::Const for RTLIL::SigChunk::data
This commit is contained in:
parent
e3664066d5
commit
e07698818d
4 changed files with 35 additions and 38 deletions
|
@ -294,7 +294,8 @@ struct BtorDumper
|
|||
int l=-1;
|
||||
if(chunk->wire == NULL)
|
||||
{
|
||||
l=dump_const(&chunk->data, chunk->width, chunk->offset);
|
||||
RTLIL::Const data_const(chunk->data);
|
||||
l=dump_const(&data_const, chunk->width, chunk->offset);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue