diff options
author | Thomas Lively <tlively@google.com> | 2024-07-13 19:51:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-13 16:51:45 -0700 |
commit | 65ee5b95743e4ee984643923c2d88a8b320cd51d (patch) | |
tree | 532dc03ebb15a45a700cbf4b52b5903606d468bf /src/wasm/wasm-validator.cpp | |
parent | d2a48afe09dd5b22079c748a97ebaebaf69a19a7 (diff) | |
download | binaryen-65ee5b95743e4ee984643923c2d88a8b320cd51d.tar.gz binaryen-65ee5b95743e4ee984643923c2d88a8b320cd51d.tar.bz2 binaryen-65ee5b95743e4ee984643923c2d88a8b320cd51d.zip |
[threads] Fix struct op validation for shared null (#6742)
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( |