summaryrefslogtreecommitdiff
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-26 13:59:30 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-26 13:59:30 +0200
commit3719281ed44aa9d8b2ac11eb936b750c4642be38 (patch)
tree7f412fda8c279d9cf7aacef7da404dff6c18c82f /kernel/rtlil.h
parente75e495c2bddb62634c6d50f90e09e0ff358faa5 (diff)
Automatically pack SigSpec on copy/assign
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 0b92405e..a2320873 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);