summaryrefslogtreecommitdiff
path: root/src/passes/OnceReduction.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-10-31 15:47:04 -0700
committerGitHub <noreply@github.com>2023-10-31 15:47:04 -0700
commitc82627e698c67fc67e301fc9d130be6458c6e718 (patch)
tree99db9ad81d812da3b17172633a3ac1ce6c4c2c9e /src/passes/OnceReduction.cpp
parentfad0698907a5a8e77ed3b2c30a4b832e575f65e0 (diff)
downloadbinaryen-c82627e698c67fc67e301fc9d130be6458c6e718.tar.gz
binaryen-c82627e698c67fc67e301fc9d130be6458c6e718.tar.bz2
binaryen-c82627e698c67fc67e301fc9d130be6458c6e718.zip
[NFC] Improve OnceReduction comment (#6068)
Followup to #6061
Diffstat (limited to 'src/passes/OnceReduction.cpp')
-rw-r--r--src/passes/OnceReduction.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/passes/OnceReduction.cpp b/src/passes/OnceReduction.cpp
index d97e19302..4542a01df 100644
--- a/src/passes/OnceReduction.cpp
+++ b/src/passes/OnceReduction.cpp
@@ -526,7 +526,13 @@ struct OnceReduction : public Pass {
// the global and call bar, and in AFTER we also call bar.
//
// Thus, the behavior is the same, and we can remove the early-exit
- // lines.
+ // lines. Note that things would be quite different if we had any code
+ // after the call to bar(), as then that code would no longer be
+ // guarded by an early-exit (and could end up called more than once).
+ // That is, this optimization depends on the fact that bar's call from
+ // foo is being guarded by two sets of early-exits, one in foo and one
+ // in bar, and therefore we only really need one; if foo did anything
+ // more than just call bar, that would be incorrect.
//
// We must be careful of loops, however: If A calls B and B calls A,
// then at least one must keep the early-exit logic, or else they