diff options
author | Thomas Lively <tlively@google.com> | 2024-06-25 09:35:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 09:35:17 -0700 |
commit | 4cd8b61c5d4817f753a54ef9f501db66969e310f (patch) | |
tree | 288d6df8bdbeeb7c4cb62ea92f36d8fabbe0d8ea /src/wasm-type.h | |
parent | 0a0ee6fe67f10a22503a964c31161c4584286d87 (diff) | |
download | binaryen-4cd8b61c5d4817f753a54ef9f501db66969e310f.tar.gz binaryen-4cd8b61c5d4817f753a54ef9f501db66969e310f.tar.bz2 binaryen-4cd8b61c5d4817f753a54ef9f501db66969e310f.zip |
[threads] Validate shared-to-unshared edges in heap types (#6698)
Add spec tests checking validation for structs and arrays.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 95c3605a5..51d945b53 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -671,6 +671,8 @@ struct TypeBuilder { ForwardChildReference, // A continuation reference that does not refer to a function type. InvalidFuncType, + // A non-shared field of a shared heap type. + InvalidUnsharedField, }; struct Error { |