mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 17:15: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
|
@ -101,7 +101,7 @@ struct OptShareWorker
|
|||
int_to_hash_string(chunk.offset) + " " +
|
||||
int_to_hash_string(chunk.width) + "}";
|
||||
else
|
||||
hash_string += chunk.data.as_string();
|
||||
hash_string += RTLIL::Const(chunk.data).as_string();
|
||||
}
|
||||
hash_string += "\n";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue