From 6d62e3c4be466888239a89c2e98713f60074aaea Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Fri, 22 Jan 2021 18:07:46 +0900 Subject: Remove exnref and br_on_exn (#3505) This removes `exnref` type and `br_on_exn` instruction. --- third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'third_party/llvm-project/include/llvm/BinaryFormat/Wasm.h') 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 { -- cgit v1.2.3