From 9d25b5601e6e2713e14803777390c2d45be3d51c Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Thu, 24 Nov 2016 16:49:54 +0100 Subject: codegen: merge type conversion and cleaning up --- libsolidity/codegen/LValue.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libsolidity/codegen') 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; } -- cgit