aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/LValue.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-04-06 22:25:13 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-05-01 03:34:43 +0800
commit2968639406888d97bfae70e4adf41674ac60fd83 (patch)
treecabaf0aff5bfd64fb067b6b537534fc851bc1b41 /libsolidity/codegen/LValue.cpp
parent52c94418795f829c4a225fdf4742eec7a1961232 (diff)
downloaddexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar
dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.gz
dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.bz2
dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.lz
dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.xz
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.cpp2
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
{