summaryrefslogtreecommitdiff
path: root/src/passes/DeadArgumentElimination.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-07-28 13:00:55 -0700
committerGitHub <noreply@github.com>2021-07-28 13:00:55 -0700
commitc5166f636c5835413046be76e26c362ef4bbecc5 (patch)
treea96e328836e14b6ecc153eccc693329aca45a381 /src/passes/DeadArgumentElimination.cpp
parent5aab7956eab367c12af1aadb052f67f40667e3ef (diff)
downloadbinaryen-c5166f636c5835413046be76e26c362ef4bbecc5.tar.gz
binaryen-c5166f636c5835413046be76e26c362ef4bbecc5.tar.bz2
binaryen-c5166f636c5835413046be76e26c362ef4bbecc5.zip
[Wasm GC] Allow tail call subtyping in DeadArgumentElimination (#4035)
Partially reverts #4025, removing the code and updates the test to show we do the optimization.
Diffstat (limited to 'src/passes/DeadArgumentElimination.cpp')
-rw-r--r--src/passes/DeadArgumentElimination.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/passes/DeadArgumentElimination.cpp b/src/passes/DeadArgumentElimination.cpp
index 9d8fa5b0d..f3e3ae98c 100644
--- a/src/passes/DeadArgumentElimination.cpp
+++ b/src/passes/DeadArgumentElimination.cpp
@@ -327,14 +327,8 @@ struct DAE : public Pass {
// affect whether an argument is used or not, it just refines the type
// where possible.
refineArgumentTypes(func, calls, module);
- // Refine return types as well, if we can. We cannot do so if this
- // function is tail-called, because then the return type must match that
- // of the function doing a tail call of it - we cannot change just one of
- // them.
- //
- // TODO: Try to optimize in a more holistic manner, see the TODO in
- // refineReturnTypes() about missing a global optimum.
- if (!tailCallees.count(name) && refineReturnTypes(func, calls, module)) {
+ // Refine return types as well.
+ if (refineReturnTypes(func, calls, module)) {
refinedReturnTypes = true;
}
// Check if all calls pass the same constant for a particular argument.