diff options
author | chriseth <chris@ethereum.org> | 2018-04-06 22:25:13 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-01 03:34:43 +0800 |
commit | 2968639406888d97bfae70e4adf41674ac60fd83 (patch) | |
tree | cabaf0aff5bfd64fb067b6b537534fc851bc1b41 /libsolidity/codegen/LValue.cpp | |
parent | 52c94418795f829c4a225fdf4742eec7a1961232 (diff) | |
download | dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.gz dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.zst dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.zip |
Removed signed shift right from the utilities.
Diffstat (limited to 'libsolidity/codegen/LValue.cpp')
-rw-r--r-- | libsolidity/codegen/LValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/LValue.cpp b/libsolidity/codegen/LValue.cpp index e19cf41e..77684683 100644 --- a/libsolidity/codegen/LValue.cpp +++ b/libsolidity/codegen/LValue.cpp @@ -267,7 +267,7 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc else if (m_dataType->category() == Type::Category::FixedBytes) { solAssert(_sourceType.category() == Type::Category::FixedBytes, "source not fixed bytes"); - CompilerUtils(m_context).rightShiftNumberOnStack(256 - 8 * dynamic_cast<FixedBytesType const&>(*m_dataType).numBytes(), false); + CompilerUtils(m_context).rightShiftNumberOnStack(256 - 8 * dynamic_cast<FixedBytesType const&>(*m_dataType).numBytes()); } else { |