mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #554 from chriseth/sol_constantOptimizer
Solidity optimizer for literal numbers
This commit is contained in:
commit
9cfccd1826
@ -295,9 +295,9 @@ u256 StructType::getStorageOffsetOfMember(string const& _name) const
|
|||||||
u256 offset;
|
u256 offset;
|
||||||
for (ASTPointer<VariableDeclaration> variable: m_struct.getMembers())
|
for (ASTPointer<VariableDeclaration> variable: m_struct.getMembers())
|
||||||
{
|
{
|
||||||
offset += variable->getType()->getStorageSize();
|
|
||||||
if (variable->getName() == _name)
|
if (variable->getName() == _name)
|
||||||
return offset;
|
return offset;
|
||||||
|
offset += variable->getType()->getStorageSize();
|
||||||
}
|
}
|
||||||
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Storage offset of non-existing member requested."));
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Storage offset of non-existing member requested."));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user