summaryrefslogtreecommitdiff
path: root/src/cfg/liveness-traversal.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-04-04 11:41:36 -0700
committerGitHub <noreply@github.com>2023-04-04 18:41:36 +0000
commitdb23ac7f02396dfcf13a1ef6a7c5665f19d91c35 (patch)
treed856f6d6d822a206390ef3574bb6a52dee1c5318 /src/cfg/liveness-traversal.h
parenta802fbe07c270f510c87dfa93577bd4731c075f3 (diff)
downloadbinaryen-db23ac7f02396dfcf13a1ef6a7c5665f19d91c35.tar.gz
binaryen-db23ac7f02396dfcf13a1ef6a7c5665f19d91c35.tar.bz2
binaryen-db23ac7f02396dfcf13a1ef6a7c5665f19d91c35.zip
[Wasm GC] Fix CoalesceLocals ineffective tee removal with type changes (#5621)
When we remove a tee there, we must not change the type at all.
Diffstat (limited to 'src/cfg/liveness-traversal.h')
-rw-r--r--src/cfg/liveness-traversal.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/cfg/liveness-traversal.h b/src/cfg/liveness-traversal.h
index d9b310d6f..650ee4f47 100644
--- a/src/cfg/liveness-traversal.h
+++ b/src/cfg/liveness-traversal.h
@@ -152,7 +152,16 @@ struct LivenessWalker : public CFGWalker<SubType, VisitorType, Liveness> {
// if it has side effects)
if (!self->currBasicBlock) {
if (curr->isTee()) {
- *currp = curr->value;
+ // We can remove the tee, but must leave something of the exact same
+ // type.
+ auto originalType = curr->type;
+ if (originalType != curr->value->type) {
+ *currp =
+ Builder(*self->getModule()).makeBlock({curr->value}, originalType);
+ } else {
+ // No special handling, just use the value.
+ *currp = curr->value;
+ }
} else {
*currp = Builder(*self->getModule()).makeDrop(curr->value);
}