diff options
author | Thomas Lively <tlively@google.com> | 2024-08-14 15:03:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 12:03:48 -0700 |
commit | cde2a52fc6d679d53d1c5b72b081992d53e01c6b (patch) | |
tree | 44d8fc7fc4d41d1d991ebcc45d017aa0f3076839 /src | |
parent | bcb83fd68710daf1f5ddd8252d0a0a4557494ca7 (diff) | |
download | binaryen-cde2a52fc6d679d53d1c5b72b081992d53e01c6b.tar.gz binaryen-cde2a52fc6d679d53d1c5b72b081992d53e01c6b.tar.bz2 binaryen-cde2a52fc6d679d53d1c5b72b081992d53e01c6b.zip |
Heap type `none` requires GC (#6840)
Since reference types only introduced function and extern references,
all of the types in the `any` hierarchy require GC, including `none`.
Fixes #6839.
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm/wasm-type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-type.cpp b/src/wasm/wasm-type.cpp index 011c51e7b..34299a9a1 100644 --- a/src/wasm/wasm-type.cpp +++ b/src/wasm/wasm-type.cpp @@ -1496,12 +1496,12 @@ FeatureSet HeapType::getFeatures() const { case HeapType::i31: case HeapType::struct_: case HeapType::array: + case HeapType::none: feats |= FeatureSet::ReferenceTypes | FeatureSet::GC; return; case HeapType::string: feats |= FeatureSet::ReferenceTypes | FeatureSet::Strings; return; - case HeapType::none: case HeapType::noext: case HeapType::nofunc: // Technically introduced in GC, but used internally as part of |