summaryrefslogtreecommitdiff
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 53770088..0e74c958 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -461,7 +461,7 @@ struct RTLIL::SigChunk {
RTLIL::Const data; // only used if wire == NULL, LSB at index 0
int width, offset;
SigChunk();
- SigChunk(const RTLIL::Const &data);
+ SigChunk(const RTLIL::Const &value);
SigChunk(RTLIL::Wire *wire, int width, int offset);
SigChunk(const std::string &str);
SigChunk(int val, int width = 32);
@@ -520,7 +520,7 @@ private:
public:
SigSpec();
- SigSpec(const RTLIL::Const &data);
+ SigSpec(const RTLIL::Const &value);
SigSpec(const RTLIL::SigChunk &chunk);
SigSpec(RTLIL::Wire *wire, int width = -1, int offset = 0);
SigSpec(const std::string &str);