diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-08-31 18:08:26 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-08-31 18:08:26 +0200 |
commit | 83ec3fa2045cac1f29ea4bfb2c8c052c31b083a1 (patch) | |
tree | b516ad7abe6383e802cd87c72a621f7e03280381 | |
parent | be44157c0f07c3bcca2363b5ce95a71fe7ad6dd9 (diff) | |
download | yosys-83ec3fa2045cac1f29ea4bfb2c8c052c31b083a1.tar.gz yosys-83ec3fa2045cac1f29ea4bfb2c8c052c31b083a1.tar.bz2 yosys-83ec3fa2045cac1f29ea4bfb2c8c052c31b083a1.zip |
Fixed return size of const_*() eval functions
-rw-r--r-- | kernel/calc.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel/calc.cc b/kernel/calc.cc index 29717aad5..7bfdb8955 100644 --- a/kernel/calc.cc +++ b/kernel/calc.cc @@ -35,6 +35,8 @@ static void extend(RTLIL::Const &arg, int width, bool is_signed) while (int(arg.bits.size()) < width) arg.bits.push_back(padding); + + arg.bits.resize(width); } static void extend_u0(RTLIL::Const &arg, int width, bool is_signed) @@ -46,6 +48,8 @@ static void extend_u0(RTLIL::Const &arg, int width, bool is_signed) while (int(arg.bits.size()) < width) arg.bits.push_back(padding); + + arg.bits.resize(width); } static BigInteger const2big(const RTLIL::Const &val, bool as_signed, int &undef_bit_pos) @@ -312,7 +316,7 @@ RTLIL::Const RTLIL::const_shl(const RTLIL::Const &arg1, const RTLIL::Const &arg2 RTLIL::Const RTLIL::const_shr(const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool, int result_len) { RTLIL::Const arg1_ext = arg1; - extend_u0(arg1_ext, result_len, signed1); + extend_u0(arg1_ext, std::max(result_len, SIZE(arg1)), signed1); return const_shift_worker(arg1_ext, arg2, false, +1, result_len); } |