aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 542e685de..832146594 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -463,9 +463,7 @@ struct RTLIL::SigChunk {
SigChunk();
SigChunk(const RTLIL::Const &value);
SigChunk(RTLIL::Wire *wire);
- SigChunk(RTLIL::Wire *wire, int width); // <-- using this will cause a linker error
- SigChunk(RTLIL::Wire *wire, int width, int offset) __attribute__((deprecated));
- static SigChunk grml(RTLIL::Wire *wire, int offset, int width = 1);
+ SigChunk(RTLIL::Wire *wire, int offset, int width = 1);
SigChunk(const std::string &str);
SigChunk(int val, int width = 32);
SigChunk(RTLIL::State bit, int width = 1);
@@ -526,9 +524,7 @@ public:
SigSpec(const RTLIL::Const &value);
SigSpec(const RTLIL::SigChunk &chunk);
SigSpec(RTLIL::Wire *wire);
- SigSpec(RTLIL::Wire *wire, int width); // <-- using this will cause a linker error
- SigSpec(RTLIL::Wire *wire, int width, int offset) __attribute__((deprecated));
- static SigSpec grml(RTLIL::Wire *wire, int offset, int width = 1);
+ SigSpec(RTLIL::Wire *wire, int offset, int width = 1);
SigSpec(const std::string &str);
SigSpec(int val, int width = 32);
SigSpec(RTLIL::State bit, int width = 1);