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 19ba5f265..26e6b369b 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -825,6 +825,14 @@ void TableGet::finalize() { // Otherwise, the type should have been set already. } +void TableSet::finalize() { + if (index->type == Type::unreachable || value->type == Type::unreachable) { + type = Type::unreachable; + } else { + type = Type::none; + } +} + void Try::finalize() { // If none of the component bodies' type is a supertype of the others, assume // the current type is already correct. TODO: Calculate a proper LUB. |