mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove unnecessary statement
This commit is contained in:
parent
eafcb42be7
commit
1d7f25e809
@ -340,7 +340,6 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc
|
|||||||
{
|
{
|
||||||
solAssert(sourceType.location() == DataLocation::Memory, "");
|
solAssert(sourceType.location() == DataLocation::Memory, "");
|
||||||
// stack layout: source_ref target_ref
|
// stack layout: source_ref target_ref
|
||||||
TypePointer sourceMemberType = sourceType.memberType(member.name);
|
|
||||||
m_context << sourceType.memoryOffsetOfMember(member.name);
|
m_context << sourceType.memoryOffsetOfMember(member.name);
|
||||||
m_context << Instruction::DUP3 << Instruction::ADD;
|
m_context << Instruction::DUP3 << Instruction::ADD;
|
||||||
MemoryItem(m_context, *sourceMemberType).retrieveValue(_location, true);
|
MemoryItem(m_context, *sourceMemberType).retrieveValue(_location, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user