diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-03-18 11:51:00 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-03-18 11:51:00 -0700 |
commit | 940640ac4472a83fb575838e66cceeedcb785b61 (patch) | |
tree | 5288ca5c46283569a27519075fc37f93d596c2c1 /kernel/rtlil.h | |
parent | 4555b5b81981b74fa20909a72353d45e7be011ad (diff) | |
download | yosys-940640ac4472a83fb575838e66cceeedcb785b61.tar.gz yosys-940640ac4472a83fb575838e66cceeedcb785b61.tar.bz2 yosys-940640ac4472a83fb575838e66cceeedcb785b61.zip |
kernel: SigSpec copies to not trigger pack()
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 66ef1fd1f..deb677f68 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -766,7 +766,7 @@ public: SigSpec(); SigSpec(const RTLIL::SigSpec &other); SigSpec(std::initializer_list<RTLIL::SigSpec> parts); - const RTLIL::SigSpec &operator=(const RTLIL::SigSpec &other); + RTLIL::SigSpec &operator=(const RTLIL::SigSpec &other); SigSpec(const RTLIL::Const &value); SigSpec(const RTLIL::SigChunk &chunk); |