diff options
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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: |