summaryrefslogtreecommitdiff
path: root/src/passes/OptimizeInstructions.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-04-07 09:48:57 -0700
committerGitHub <noreply@github.com>2023-04-07 09:48:57 -0700
commit9328b6c1906e2fb91253f65c6983547407c0a77c (patch)
treed5b8dd68c1e1bff5c4c8f0e9b21c0d3fe1f0eb76 /src/passes/OptimizeInstructions.cpp
parente5be9ac2e2f22545ae02db43e9f94dd7d3dbceef (diff)
downloadbinaryen-9328b6c1906e2fb91253f65c6983547407c0a77c.tar.gz
binaryen-9328b6c1906e2fb91253f65c6983547407c0a77c.tar.bz2
binaryen-9328b6c1906e2fb91253f65c6983547407c0a77c.zip
[Wasm GC] Fix an assertion in array.set processing in OptimizeInstructions (#5641)
Diffstat (limited to 'src/passes/OptimizeInstructions.cpp')
-rw-r--r--src/passes/OptimizeInstructions.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp
index e71519012..e6b19a6de 100644
--- a/src/passes/OptimizeInstructions.cpp
+++ b/src/passes/OptimizeInstructions.cpp
@@ -1941,9 +1941,10 @@ struct OptimizeInstructions
return;
}
- if (curr->ref->type != Type::unreachable && curr->value->type.isInteger()) {
- auto element = curr->ref->type.getHeapType().getArray().element;
- optimizeStoredValue(curr->value, element.getByteSize());
+ if (curr->value->type.isInteger()) {
+ if (auto field = GCTypeUtils::getField(curr->ref->type)) {
+ optimizeStoredValue(curr->value, field->getByteSize());
+ }
}
}