summaryrefslogtreecommitdiff
path: root/src/ir
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-10-16 15:16:08 -0700
committerGitHub <noreply@github.com>2024-10-16 15:16:08 -0700
commitfd86eadb591576b82b0b564f95952b131979e91a (patch)
tree717e3a934dda42c7bbeb185784725034a6d6f7dd /src/ir
parentd13c262dc8dc2239e6ed267eb3c0567eac378568 (diff)
downloadbinaryen-fd86eadb591576b82b0b564f95952b131979e91a.tar.gz
binaryen-fd86eadb591576b82b0b564f95952b131979e91a.tar.bz2
binaryen-fd86eadb591576b82b0b564f95952b131979e91a.zip
[EH][GC] Add missing subtyping constraints from TryTable (#7012)
Similar to Break, BrOn, etc., we must apply subtyping constraints of the types we send to blocks, so that Unsubtyping will not remove subtypings that are actually needed.
Diffstat (limited to 'src/ir')
-rw-r--r--src/ir/subtype-exprs.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ir/subtype-exprs.h b/src/ir/subtype-exprs.h
index 640240df9..1895c856a 100644
--- a/src/ir/subtype-exprs.h
+++ b/src/ir/subtype-exprs.h
@@ -249,7 +249,13 @@ struct SubtypingDiscoverer : public OverriddenVisitor<SubType> {
self()->noteSubtype(body, curr);
}
}
- void visitTryTable(TryTable* curr) { self()->noteSubtype(curr->body, curr); }
+ void visitTryTable(TryTable* curr) {
+ self()->noteSubtype(curr->body, curr);
+ for (Index i = 0; i < curr->catchTags.size(); i++) {
+ self()->noteSubtype(curr->sentTypes[i],
+ self()->findBreakTarget(curr->catchDests[i]));
+ }
+ }
void visitThrow(Throw* curr) {
Type params = self()->getModule()->getTag(curr->tag)->sig.params;
assert(params.size() == curr->operands.size());