Activate ewasm dialect in commandline interface.

This commit is contained in:
chriseth
2019-05-02 18:36:48 +02:00
parent f6c6871bce
commit 61e36cbfaa
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ string EWasmToText::operator()(wasm::Literal const& _literal)
string EWasmToText::operator()(wasm::Identifier const& _identifier)
{
return "(get.local $" + _identifier.name + ")";
return "(get_local $" + _identifier.name + ")";
}
string EWasmToText::operator()(wasm::Label const& _label)