diff options
Diffstat (limited to 'src/wasm/wasm.cpp')
-rw-r--r-- | src/wasm/wasm.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index 749a44339..d4337a87d 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -1192,6 +1192,14 @@ void StringMeasure::finalize() { } } +void StringEncode::finalize() { + if (ref->type == Type::unreachable || ptr->type == Type::unreachable) { + type = Type::unreachable; + } else { + type = Type::i32; + } +} + size_t Function::getNumParams() { return getParams().size(); } size_t Function::getNumVars() { return vars.size(); } |