From cdab4ef130626958790cb2601209f14d192fa10a Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Sun, 14 Jul 2019 15:25:16 -0700 Subject: Rename except_ref type to exnref (#2224) In WebAssembly/exception-handling#79 we agreed to rename `except_ref` type to `exnref`. --- src/asmjs/asm_v_wasm.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/asmjs/asm_v_wasm.cpp') diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index af22112a3..32653fdba 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -53,8 +53,8 @@ AsmType wasmToAsmType(Type type) { return ASM_INT64; case v128: assert(false && "v128 not implemented yet"); - case except_ref: - assert(false && "except_ref is not in asm2wasm"); + case exnref: + assert(false && "exnref is not in asm2wasm"); case none: return ASM_NONE; case unreachable: @@ -75,7 +75,7 @@ char getSig(Type type) { return 'd'; case v128: return 'V'; - case except_ref: + case exnref: return 'e'; case none: return 'v'; @@ -106,7 +106,7 @@ Type sigToType(char sig) { case 'V': return v128; case 'e': - return except_ref; + return exnref; case 'v': return none; default: -- cgit v1.2.3