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 /src/ir/memory-utils.cpp | |
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 'src/ir/memory-utils.cpp')
-rw-r--r-- | src/ir/memory-utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/memory-utils.cpp b/src/ir/memory-utils.cpp index 1530e7c11..5c9dde235 100644 --- a/src/ir/memory-utils.cpp +++ b/src/ir/memory-utils.cpp @@ -20,7 +20,7 @@ namespace wasm::MemoryUtils { bool flatten(Module& wasm) { - // Flatten does not currently have support for multi-memories + // Flatten does not currently have support for multimemory if (wasm.memories.size() > 1) { return false; } |