summaryrefslogtreecommitdiff
path: root/src/passes/pass.cpp
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2024-11-16 00:40:01 -0800
committerGitHub <noreply@github.com>2024-11-16 00:40:01 -0800
commit69591ded5acab404cba96af7ebc1afd54034c545 (patch)
tree49852fc9cadb5d3ad08b898537e18ea10e590fea /src/passes/pass.cpp
parentf6f898b6b6f85b5e2c4f5bc0c61b8465e72dc35e (diff)
downloadbinaryen-69591ded5acab404cba96af7ebc1afd54034c545.tar.gz
binaryen-69591ded5acab404cba96af7ebc1afd54034c545.tar.bz2
binaryen-69591ded5acab404cba96af7ebc1afd54034c545.zip
Rename memory-copy-fill-lowering pass (#7082)
Since the resulting code has the same undefined behavior as LLVM, make the pass name reflect that.
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r--src/passes/pass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp
index fcefb89ad..5cbf4a31f 100644
--- a/src/passes/pass.cpp
+++ b/src/passes/pass.cpp
@@ -272,10 +272,10 @@ void PassRegistry::registerPasses() {
registerPass("table64-lowering",
"lower 64-bit tables 32-bit ones",
createTable64LoweringPass);
- registerPass("memory-copy-fill-lowering",
+ registerPass("llvm-memory-copy-fill-lowering",
"Lower memory.copy and memory.fill to wasm mvp and disable "
"the bulk-memory feature.",
- createMemoryCopyFillLoweringPass);
+ createLLVMMemoryCopyFillLoweringPass);
registerPass("memory-packing",
"packs memory into separate segments, skipping zeros",
createMemoryPackingPass);