diff options
author | Yury Delendik <ydelendik@mozilla.com> | 2019-09-12 07:35:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-12 07:35:32 -0500 |
commit | 99bb044a796b3c4bd3c292c11092de0e21d59ea9 (patch) | |
tree | d7ef95ff8f91856753ed944401dfaffc375670cb /src/common.h | |
parent | 3e938b7a10cc6738037dce5f18675cc5d267992d (diff) | |
download | wabt-99bb044a796b3c4bd3c292c11092de0e21d59ea9.tar.gz wabt-99bb044a796b3c4bd3c292c11092de0e21d59ea9.tar.bz2 wabt-99bb044a796b3c4bd3c292c11092de0e21d59ea9.zip |
Add ref.* to the (invoke) (#1156)
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 5d0f2cca..0f6e92ca 100644 --- a/src/common.h +++ b/src/common.h @@ -219,6 +219,7 @@ enum class Type : int32_t { Void = -0x40, // 0x40 ___ = Void, // Convenient for the opcode table in opcode.h Any = 0, // Not actually specified, but useful for type-checking + Nullref = 1, // Not actually specified, but useful for anyref type-checking }; typedef std::vector<Type> TypeVector; |