Merge remote-tracking branch 'origin/develop' into develop_060

This commit is contained in:
chriseth
2019-10-31 18:03:25 +01:00
6 changed files with 22 additions and 10 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ string EWasmToText::transform(wasm::FunctionDefinition const& _function)
ret += " (result i64)\n";
for (auto const& local: _function.locals)
ret += " (local $" + local.variableName + " i64)\n";
ret += indented(joinTransformed(_function.body));
ret += indented(joinTransformed(_function.body, '\n'));
if (ret.back() != '\n')
ret += '\n';
ret += ")\n";