aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-23 08:59:54 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-23 08:59:54 +0200
commitc61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81 (patch)
treeb02ae740b0cc3125a20a11f7bb0ad1e2d9f9bffb /kernel/rtlil.h
parent115dd959d9dbf68aa30f8374df0e62fba8646f1e (diff)
downloadyosys-c61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81.tar.gz
yosys-c61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81.tar.bz2
yosys-c61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81.zip
Some cleanups in RTLIL::SigChunk::SigChunk(const RTLIL::Const&)
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 53770088b..0e74c958a 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);