aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r--libsolidity/codegen/LValue.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/libsolidity/codegen/LValue.cpp b/libsolidity/codegen/LValue.cpp
index df74e836..63729d27 100644
--- a/libsolidity/codegen/LValue.cpp
+++ b/libsolidity/codegen/LValue.cpp
@@ -233,8 +233,7 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc
m_context << Instruction::DUP2 << Instruction::SWAP1;
m_context << Instruction::SWAP1;
- utils.convertType(_sourceType, _sourceType, true);
- utils.convertType(*m_dataType, *m_dataType, true, true);
+ utils.convertType(_sourceType, *m_dataType, true);
m_context << Instruction::SWAP1;
m_context << Instruction::SSTORE;
@@ -244,7 +243,7 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc
if (_sourceType.sizeOnStack() == 1)
{
m_context << Instruction::SWAP2;
- utils.convertType(_sourceType, _sourceType, true);
+ utils.convertType(_sourceType, *m_dataType, true);
m_context << Instruction::SWAP2;
}