diff options
author | Alon Zakai <azakai@google.com> | 2024-10-16 15:16:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-16 15:16:08 -0700 |
commit | fd86eadb591576b82b0b564f95952b131979e91a (patch) | |
tree | 717e3a934dda42c7bbeb185784725034a6d6f7dd /src/ir | |
parent | d13c262dc8dc2239e6ed267eb3c0567eac378568 (diff) | |
download | binaryen-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.h | 8 |
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()); |