summaryrefslogtreecommitdiff
path: root/third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-01-22 18:07:46 +0900
committerGitHub <noreply@github.com>2021-01-22 18:07:46 +0900
commit6d62e3c4be466888239a89c2e98713f60074aaea (patch)
treef2b55ef6eed4be74c2faee998f15ab46231083a9 /third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h
parent69ff866fc7e54f25d8d8598581aa3553cb87603b (diff)
downloadbinaryen-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 'third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h')
-rw-r--r--third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h b/third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h
index f550d880f..97f07d5f4 100644
--- a/third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h
+++ b/third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h
@@ -225,7 +225,6 @@ enum : unsigned {
WASM_TYPE_F64 = 0x7C,
WASM_TYPE_V128 = 0x7B,
WASM_TYPE_FUNCREF = 0x70,
- WASM_TYPE_EXNREF = 0x68,
WASM_TYPE_FUNC = 0x60,
WASM_TYPE_NORESULT = 0x40, // for blocks with no result values
};
@@ -348,7 +347,6 @@ enum class ValType {
F32 = WASM_TYPE_F32,
F64 = WASM_TYPE_F64,
V128 = WASM_TYPE_V128,
- EXNREF = WASM_TYPE_EXNREF,
};
struct WasmSignature {