diff options
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 5d25323de..081924ba0 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -1655,6 +1655,7 @@ public: if (debug) std::cerr << "zz node: Binary" << std::endl; curr->right = popExpression(); curr->left = popExpression(); + curr->finalize(); return true; #undef TYPED_CODE #undef INT_TYPED_CODE @@ -1687,6 +1688,7 @@ public: default: return false; } if (debug) std::cerr << "zz node: Host" << std::endl; + curr->finalize(); return true; } void visitNop(Nop *curr) { |