diff options
author | Ashley Nelson <nashley@google.com> | 2022-08-25 13:35:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 13:35:46 -0700 |
commit | 8b81405778eb85fccbfdbe789beeba5108cf1021 (patch) | |
tree | 0263c08a9453021cb30712a199d9b8917e944fa6 /src/wasm-binary.h | |
parent | 37b457a00a46e5604b2a8a388efaf0813b3d1170 (diff) | |
download | binaryen-8b81405778eb85fccbfdbe789beeba5108cf1021.tar.gz binaryen-8b81405778eb85fccbfdbe789beeba5108cf1021.tar.bz2 binaryen-8b81405778eb85fccbfdbe789beeba5108cf1021.zip |
Adding Multi-Memories Wasm Feature (#4968)
Adding multi-memories to the the list of wasm-features.
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index c229e4666..e787baa9d 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -438,6 +438,7 @@ extern const char* TypedFunctionReferencesFeature; extern const char* RelaxedSIMDFeature; extern const char* ExtendedConstFeature; extern const char* StringsFeature; +extern const char* MultiMemoriesFeature; enum Subsection { NameModule = 0, |