Merge pull request #6503 from ethereum/inlineAsm-yul

Inline asm yul
This commit is contained in:
chriseth
2019-04-18 17:15:09 +02:00
committed by GitHub
6 changed files with 104 additions and 2 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ Expression ASTCopier::operator()(FunctionalInstruction const& _instruction)
Expression ASTCopier::operator()(Identifier const& _identifier)
{
return Identifier{_identifier.location, translateIdentifier(_identifier.name)};
return translate(_identifier);
}
Expression ASTCopier::operator()(Literal const& _literal)
+1 -1
View File
@@ -104,7 +104,7 @@ protected:
Block translate(Block const& _block);
Case translate(Case const& _case);
Identifier translate(Identifier const& _identifier);
virtual Identifier translate(Identifier const& _identifier);
Literal translate(Literal const& _literal);
TypedName translate(TypedName const& _typedName);