3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-20 21:03:40 +00:00

Automatically pack SigSpec on copy/assign

This commit is contained in:
Clifford Wolf 2014-07-26 13:59:30 +02:00
parent e75e495c2b
commit 3719281ed4
2 changed files with 62 additions and 16 deletions

View file

@ -567,6 +567,9 @@ private:
public:
SigSpec();
SigSpec(const RTLIL::SigSpec &other);
const RTLIL::SigSpec &operator=(const RTLIL::SigSpec &other);
SigSpec(const RTLIL::Const &value);
SigSpec(const RTLIL::SigChunk &chunk);
SigSpec(RTLIL::Wire *wire);