IR: Generate inline asm blocks

This commit is contained in:
Mathias Baumann
2019-04-18 16:49:19 +02:00
parent 3ba811f1ad
commit 3d061c83d7
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)