diff options
author | Derek Schuff <dschuff@chromium.org> | 2024-11-16 00:40:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-16 00:40:01 -0800 |
commit | 69591ded5acab404cba96af7ebc1afd54034c545 (patch) | |
tree | 49852fc9cadb5d3ad08b898537e18ea10e590fea /test/lit/exec | |
parent | f6f898b6b6f85b5e2c4f5bc0c61b8465e72dc35e (diff) | |
download | binaryen-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 'test/lit/exec')
-rw-r--r-- | test/lit/exec/memory-copy.wat | 2 | ||||
-rw-r--r-- | test/lit/exec/memory-fill.wat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/exec/memory-copy.wat b/test/lit/exec/memory-copy.wat index 793f94656..3583b048e 100644 --- a/test/lit/exec/memory-copy.wat +++ b/test/lit/exec/memory-copy.wat @@ -1,6 +1,6 @@ ;; NOTE: Assertions have been generated by update_lit_checks.py --output=fuzz-exec and should not be edited. -;; RUN: wasm-opt %s --enable-bulk-memory --memory-copy-fill-lowering --fuzz-exec -q -o /dev/null 2>&1 | filecheck %s +;; RUN: wasm-opt %s --enable-bulk-memory --llvm-memory-copy-fill-lowering --fuzz-exec -q -o /dev/null 2>&1 | filecheck %s ;; Tests derived from bulk-memory.wast spec tests diff --git a/test/lit/exec/memory-fill.wat b/test/lit/exec/memory-fill.wat index dc9aead6d..c63dcef0c 100644 --- a/test/lit/exec/memory-fill.wat +++ b/test/lit/exec/memory-fill.wat @@ -1,6 +1,6 @@ ;; NOTE: Assertions have been generated by update_lit_checks.py --output=fuzz-exec and should not be edited. -;; RUN: wasm-opt %s --enable-bulk-memory --memory-copy-fill-lowering --fuzz-exec -q -o /dev/null 2>&1 | filecheck %s +;; RUN: wasm-opt %s --enable-bulk-memory --llvm-memory-copy-fill-lowering --fuzz-exec -q -o /dev/null 2>&1 | filecheck %s ;; Tests derived from bulk-memory.wast spec tests |