summaryrefslogtreecommitdiff
path: root/src/asmjs/asm_v_wasm.cpp
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2019-07-14 15:25:16 -0700
committerGitHub <noreply@github.com>2019-07-14 15:25:16 -0700
commitcdab4ef130626958790cb2601209f14d192fa10a (patch)
tree420e95f5effa60a9fd0742ffd4f45735e2975ed8 /src/asmjs/asm_v_wasm.cpp
parent8d13b5a9c59b5b215583568ddd117a626cc8f59f (diff)
downloadbinaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.gz
binaryen-cdab4ef130626958790cb2601209f14d192fa10a.tar.bz2
binaryen-cdab4ef130626958790cb2601209f14d192fa10a.zip
Rename except_ref type to exnref (#2224)
In WebAssembly/exception-handling#79 we agreed to rename `except_ref` type to `exnref`.
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r--src/asmjs/asm_v_wasm.cpp8
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: