diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-07 18:17:10 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-07 18:17:10 +0100 |
commit | 947bd9b96bb978e204275d6fbbc9ce9ff6eda28c (patch) | |
tree | c9f0f53390c6fdfba52d26a3571d761ef28449f9 /kernel/rtlil.cc | |
parent | 0e1661f84e99f1d4a487e7a432b05a6cb2071714 (diff) | |
download | yosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.tar.gz yosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.tar.bz2 yosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.zip |
Renamed extend_un0() to extend_u0() and use it in genrtlil
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 4388acb1d..d03fb0448 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -940,7 +940,7 @@ void RTLIL::SigSpec::extend(int width, bool is_signed) optimize(); } -void RTLIL::SigSpec::extend_un0(int width, bool is_signed) +void RTLIL::SigSpec::extend_u0(int width, bool is_signed) { if (this->width > width) remove(width, this->width - width); |