summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wasm2asm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h
index f7e852b3b..2ca6406b5 100644
--- a/src/wasm2asm.h
+++ b/src/wasm2asm.h
@@ -206,7 +206,11 @@ Ref Wasm2AsmBuilder::processFunction(Function* func) {
}
} else {
// whole thing is an expression, just do a return
- ret[3]->push_back(ValueBuilder::makeStatement(ValueBuilder::makeReturn(processFunctionBody(func->body, EXPRESSION_RESULT))));
+ if (func->result != none) {
+ ret[3]->push_back(ValueBuilder::makeStatement(ValueBuilder::makeReturn(processFunctionBody(func->body, EXPRESSION_RESULT))));
+ } else {
+ flattenAppend(ret, processFunctionBody(func->body, NO_RESULT));
+ }
}
// locals, including new temp locals
for (auto& local : func->locals) {