mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
removed unneccessary check from ExpresiionCompiler
This commit is contained in:
parent
dd3b0664c6
commit
5291467a26
@ -821,7 +821,6 @@ bool ExpressionCompiler::visit(IndexAccess const& _indexAccess)
|
|||||||
_indexAccess.baseExpression().accept(*this);
|
_indexAccess.baseExpression().accept(*this);
|
||||||
|
|
||||||
Type const& baseType = *_indexAccess.baseExpression().type();
|
Type const& baseType = *_indexAccess.baseExpression().type();
|
||||||
Type const& indexType = *_indexAccess.indexExpression()->type();
|
|
||||||
|
|
||||||
if (baseType.category() == Type::Category::Mapping)
|
if (baseType.category() == Type::Category::Mapping)
|
||||||
{
|
{
|
||||||
@ -863,21 +862,8 @@ bool ExpressionCompiler::visit(IndexAccess const& _indexAccess)
|
|||||||
solAssert(_indexAccess.indexExpression(), "Index expression expected.");
|
solAssert(_indexAccess.indexExpression(), "Index expression expected.");
|
||||||
|
|
||||||
_indexAccess.indexExpression()->accept(*this);
|
_indexAccess.indexExpression()->accept(*this);
|
||||||
|
|
||||||
// check for dynamically sized arrays should be done after memberAccess visit to have length
|
|
||||||
if (
|
|
||||||
(indexType.category() == Type::Category::IntegerConstant) &&
|
|
||||||
((arrayType.isDynamicallySized() && arrayType.length()) || !arrayType.isDynamicallySized())
|
|
||||||
)
|
|
||||||
{
|
|
||||||
IntegerConstantType const& constant = dynamic_cast<IntegerConstantType const&>(indexType);
|
|
||||||
if (arrayType.length() < constant.literalValue(nullptr))
|
|
||||||
BOOST_THROW_EXCEPTION(CompilerError() << errinfo_comment("Out of bounds access."));
|
|
||||||
}
|
|
||||||
|
|
||||||
// stack layout: <base_ref> [<length>] <index>
|
// stack layout: <base_ref> [<length>] <index>
|
||||||
ArrayUtils(m_context).accessIndex(arrayType);
|
ArrayUtils(m_context).accessIndex(arrayType);
|
||||||
|
|
||||||
switch (arrayType.location())
|
switch (arrayType.location())
|
||||||
{
|
{
|
||||||
case DataLocation::Storage:
|
case DataLocation::Storage:
|
||||||
|
Loading…
Reference in New Issue
Block a user