diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-01-22 18:07:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 18:07:46 +0900 |
commit | 6d62e3c4be466888239a89c2e98713f60074aaea (patch) | |
tree | f2b55ef6eed4be74c2faee998f15ab46231083a9 /src/wasm-type.h | |
parent | 69ff866fc7e54f25d8d8598581aa3553cb87603b (diff) | |
download | binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.tar.gz binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.tar.bz2 binaryen-6d62e3c4be466888239a89c2e98713f60074aaea.zip |
Remove exnref and br_on_exn (#3505)
This removes `exnref` type and `br_on_exn` instruction.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index b85855f0b..6b3fdb08f 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -72,7 +72,6 @@ public: v128, funcref, externref, - exnref, anyref, eqref, dataref, @@ -117,8 +116,7 @@ public: // ├─ Aliases ───╫───┼───┼───┼───┤───────┤ // │ funcref ║ x │ │ x │ x │ f n │ ┐ Ref // │ externref ║ x │ │ x │ x │ f? n │ │ f_unc - // │ exnref ║ x │ │ x │ x │ n │ │ n_ullable - // │ anyref ║ x │ │ x │ x │ f? n │ │ + // │ anyref ║ x │ │ x │ x │ f? n │ │ n_ullable // │ eqref ║ x │ │ x │ x │ n │ │ ┐ TODO (GC) // │ i31ref ║ x │ │ x │ x │ │ │ │ // │ dataref ║ x │ │ x │ x │ │ │ ┘ @@ -295,7 +293,6 @@ public: enum BasicHeapType : uint32_t { func, ext, - exn, any, eq, data, |