summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-06-25 09:35:17 -0700
committerGitHub <noreply@github.com>2024-06-25 09:35:17 -0700
commit4cd8b61c5d4817f753a54ef9f501db66969e310f (patch)
tree288d6df8bdbeeb7c4cb62ea92f36d8fabbe0d8ea /src/wasm-type.h
parent0a0ee6fe67f10a22503a964c31161c4584286d87 (diff)
downloadbinaryen-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.h2
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 {