diff options
Diffstat (limited to 'src/wasm/wasm-validator.cpp')
-rw-r--r-- | src/wasm/wasm-validator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp index eb2f949b2..143baee41 100644 --- a/src/wasm/wasm-validator.cpp +++ b/src/wasm/wasm-validator.cpp @@ -2879,7 +2879,7 @@ void FunctionValidator::visitStructSet(StructSet* curr) { return; } auto type = curr->ref->type.getHeapType(); - if (type == HeapType::none) { + if (type.isBasic() && type.getBasic(Unshared) == HeapType::none) { return; } if (!shouldBeTrue( |