aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-15 16:23:12 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-15 16:23:12 -0700
commitb29f26f6c7d880b9a446f6eacfa988c2018a1e30 (patch)
tree1ce75cc63a4d9f24931501451a6b8a8ac204d7b5 /kernel/rtlil.h
parent5f00d335d4861fc03dd7b6cee68fd79505bd3d41 (diff)
downloadyosys-b29f26f6c7d880b9a446f6eacfa988c2018a1e30.tar.gz
yosys-b29f26f6c7d880b9a446f6eacfa988c2018a1e30.tar.bz2
yosys-b29f26f6c7d880b9a446f6eacfa988c2018a1e30.zip
SigSpec::extend_u0() to return *this
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 82cbfaf28..8d88cc97c 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -776,7 +776,7 @@ public:
void append(const RTLIL::SigSpec &signal);
void append_bit(const RTLIL::SigBit &bit);
- void extend_u0(int width, bool is_signed = false);
+ RTLIL::SigSpec& extend_u0(int width, bool is_signed = false);
RTLIL::SigSpec repeat(int num) const;