diff options
author | Ashley Nelson <nashley@google.com> | 2023-08-21 19:29:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 19:29:10 -0700 |
commit | afca5f51a46750927ac9263297d24b224915e558 (patch) | |
tree | b8ac65ee40ca41668d111bb8545a7797b165671a /test/lit/wasm-split | |
parent | 905e2fc25208c0bce3f78ac4ac3315219194e768 (diff) | |
download | binaryen-afca5f51a46750927ac9263297d24b224915e558.tar.gz binaryen-afca5f51a46750927ac9263297d24b224915e558.tar.bz2 binaryen-afca5f51a46750927ac9263297d24b224915e558.zip |
Rename multimemory flag (#5890)
Renaming the multimemory flag in Binaryen to match its naming in LLVM.
Diffstat (limited to 'test/lit/wasm-split')
-rw-r--r-- | test/lit/wasm-split/instrument-in-secondary-memory.wast | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lit/wasm-split/instrument-in-secondary-memory.wast b/test/lit/wasm-split/instrument-in-secondary-memory.wast index bac67f717..d68e4c1d6 100644 --- a/test/lit/wasm-split/instrument-in-secondary-memory.wast +++ b/test/lit/wasm-split/instrument-in-secondary-memory.wast @@ -1,8 +1,8 @@ -;; RUN: wasm-split %s --instrument --in-secondary-memory --enable-threads --enable-multi-memories -S -o - | filecheck %s +;; RUN: wasm-split %s --instrument --in-secondary-memory --enable-threads --enable-multimemory -S -o - | filecheck %s ;; Check that the output round trips and validates as well -;; RUN: wasm-split %s --instrument --in-secondary-memory --enable-threads --enable-multi-memories -g -o %t.wasm -;; RUN: wasm-opt --enable-threads --enable-multi-memories %t.wasm -S -o - +;; RUN: wasm-split %s --instrument --in-secondary-memory --enable-threads --enable-multimemory -g -o %t.wasm +;; RUN: wasm-opt --enable-threads --enable-multimemory %t.wasm -S -o - (module (import "env" "foo" (func $foo)) |