diff options
author | Alon Zakai <azakai@google.com> | 2024-02-29 11:23:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 11:23:32 -0800 |
commit | 2ca9638354e4a5f260ced04d186808fc8b498986 (patch) | |
tree | f80701fac22136d43779c0e75eea23f3b4bf72ba /src/passes/RoundTrip.cpp | |
parent | efbf70cadfa6bd47b72debbf8e6b514724e3b1bd (diff) | |
download | binaryen-2ca9638354e4a5f260ced04d186808fc8b498986.tar.gz binaryen-2ca9638354e4a5f260ced04d186808fc8b498986.tar.bz2 binaryen-2ca9638354e4a5f260ced04d186808fc8b498986.zip |
Fuzzer: Mark Roundtrip pass as adding effects (#6366)
Diffstat (limited to 'src/passes/RoundTrip.cpp')
-rw-r--r-- | src/passes/RoundTrip.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/passes/RoundTrip.cpp b/src/passes/RoundTrip.cpp index dede8cbc5..b930b195c 100644 --- a/src/passes/RoundTrip.cpp +++ b/src/passes/RoundTrip.cpp @@ -28,6 +28,12 @@ namespace wasm { struct RoundTrip : public Pass { + // Reloading the wasm may alter function names etc., which means our global + // function effect tracking can get confused, and effects may seem to appear. + // To avoid that, mark this pass as adding effects, which will clear all + // cached effects and such. + bool addsEffects() override { return true; } + void run(Module* module) override { BufferWithRandomAccess buffer; // Save features, which would not otherwise make it through a round trip if |