diff options
Diffstat (limited to 'src/wasm/wasm.cpp')
-rw-r--r-- | src/wasm/wasm.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index c4a5f362a..0a3ca1929 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -1269,6 +1269,23 @@ void StringIterMove::finalize() { } } +void StringSliceWTF::finalize() { + if (ref->type == Type::unreachable || start->type == Type::unreachable || + end->type == Type::unreachable) { + type = Type::unreachable; + } else { + type = Type(HeapType::string, NonNullable); + } +} + +void StringSliceIter::finalize() { + if (ref->type == Type::unreachable || num->type == Type::unreachable) { + type = Type::unreachable; + } else { + type = Type(HeapType::string, NonNullable); + } +} + size_t Function::getNumParams() { return getParams().size(); } size_t Function::getNumVars() { return vars.size(); } |