Assembly: Remove Label instruction.

This commit is contained in:
Christian Parpart
2019-10-25 15:01:25 +02:00
parent 5e8d348f66
commit e23998fc6e
20 changed files with 1 additions and 94 deletions
-7
View File
@@ -113,13 +113,6 @@ string AsmPrinter::operator()(ExpressionStatement const& _statement) const
return boost::apply_visitor(*this, _statement.expression);
}
string AsmPrinter::operator()(Label const& _label) const
{
solAssert(!m_yul, "");
solAssert(!_label.name.empty(), "Invalid label.");
return _label.name.str() + ":";
}
string AsmPrinter::operator()(Assignment const& _assignment) const
{
solAssert(_assignment.variableNames.size() >= 1, "");