diff options
author | Thomas Lively <tlively@google.com> | 2023-04-19 16:56:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 16:56:42 -0700 |
commit | 1e2e89b26fa27f51c4ae85e59dd081e352bf8f7c (patch) | |
tree | 665f6442cc00bcf747761ba46fc6284dea29e8a7 /src/passes/pass.cpp | |
parent | 8e965ee29a12ce6d5ba2d2fc5d8a51b75b42ad73 (diff) | |
download | binaryen-1e2e89b26fa27f51c4ae85e59dd081e352bf8f7c.tar.gz binaryen-1e2e89b26fa27f51c4ae85e59dd081e352bf8f7c.tar.bz2 binaryen-1e2e89b26fa27f51c4ae85e59dd081e352bf8f7c.zip |
Disable sign extension in SignExtLowering.cpp (#5676)
* Disable sign extension in SignExtLowering.cpp
The sign extension lowering pass would previously lower away the sign extension
instructions, but it wouldn't disable the sign extension feature, so follow-on
passes such as optimize-instructions could reintroduce sign extension
instructions.
Fix the pass to disable the sign extension feature to prevent sign extension
instructions from being reintroduced later.
* update pass description
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index d567fee95..ff2c7d45f 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -408,7 +408,8 @@ void PassRegistry::registerPasses() { "apply more specific subtypes to signature types where possible", createSignatureRefiningPass); registerPass("signext-lowering", - "lower sign-ext operations to wasm mvp", + "lower sign-ext operations to wasm mvp and disable the sign " + "extension feature", createSignExtLoweringPass); registerPass("simplify-globals", "miscellaneous globals-related optimizations", |