diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-26 13:59:30 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-26 13:59:30 +0200 |
commit | 3719281ed44aa9d8b2ac11eb936b750c4642be38 (patch) | |
tree | 7f412fda8c279d9cf7aacef7da404dff6c18c82f /kernel/rtlil.h | |
parent | e75e495c2bddb62634c6d50f90e09e0ff358faa5 (diff) | |
download | yosys-3719281ed44aa9d8b2ac11eb936b750c4642be38.tar.gz yosys-3719281ed44aa9d8b2ac11eb936b750c4642be38.tar.bz2 yosys-3719281ed44aa9d8b2ac11eb936b750c4642be38.zip |
Automatically pack SigSpec on copy/assign
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 0b92405e8..a2320873a 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -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); |