[Yul] leave statement.

This commit is contained in:
chriseth
2019-10-29 14:32:16 +01:00
parent edf1e83fda
commit ceb8ee9124
41 changed files with 214 additions and 27 deletions
+2 -1
View File
@@ -70,7 +70,8 @@ void CodeSize::visit(Statement const& _statement)
else if (
_statement.type() == typeid(If) ||
_statement.type() == typeid(Break) ||
_statement.type() == typeid(Continue)
_statement.type() == typeid(Continue) ||
_statement.type() == typeid(Leave)
)
m_size += 2;
else if (_statement.type() == typeid(ForLoop))