diff options
author | Alon Zakai (kripken) <alonzakai@gmail.com> | 2017-07-10 16:10:58 -0700 |
---|---|---|
committer | Alon Zakai (kripken) <alonzakai@gmail.com> | 2017-07-11 11:07:45 -0700 |
commit | 90b9b94fdeee3def639006e53be8e282cd7d14f0 (patch) | |
tree | 89a061906171ec3dca8abc77988a2e90e9875d37 /src/passes/Vacuum.cpp | |
parent | 5c4c6ba03e1c42cee86e580c09b8c66a6bb1a71c (diff) | |
download | binaryen-90b9b94fdeee3def639006e53be8e282cd7d14f0.tar.gz binaryen-90b9b94fdeee3def639006e53be8e282cd7d14f0.tar.bz2 binaryen-90b9b94fdeee3def639006e53be8e282cd7d14f0.zip |
loads may trap, do not remove them in vacuum unless the pass options allow that
Diffstat (limited to 'src/passes/Vacuum.cpp')
-rw-r--r-- | src/passes/Vacuum.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/passes/Vacuum.cpp b/src/passes/Vacuum.cpp index b58bea4b3..70230e502 100644 --- a/src/passes/Vacuum.cpp +++ b/src/passes/Vacuum.cpp @@ -73,7 +73,9 @@ struct Vacuum : public WalkerPass<PostWalker<Vacuum>> { case Expression::Id::UnreachableId: return curr; // always needed case Expression::Id::LoadId: { - if (!resultUsed) { + // it is ok to remove a load if the result is not used, and it has no + // side effects (the load itself may trap, if we are not ignoring such things) + if (!resultUsed && !EffectAnalyzer(getPassOptions(), curr).hasSideEffects()) { return curr->cast<Load>()->ptr; } return curr; |