summaryrefslogtreecommitdiff
path: root/src/wasm-features.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-features.h')
-rw-r--r--src/wasm-features.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-features.h b/src/wasm-features.h
index 6e74e0b29..a2bb52971 100644
--- a/src/wasm-features.h
+++ b/src/wasm-features.h
@@ -91,6 +91,7 @@ struct FeatureSet {
bool hasReferenceTypes() const { return (features & ReferenceTypes) != 0; }
bool hasMultivalue() const { return (features & Multivalue) != 0; }
bool hasGC() const { return (features & GC) != 0; }
+ bool hasMemory64() const { return (features & Memory64) != 0; }
bool hasAll() const { return (features & All) != 0; }
void makeMVP() { features = MVP; }