diff options
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index 9e05d8722..38eb029f4 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -34,7 +34,6 @@ JsType wasmToJsType(Type type) { case Type::v128: WASM_UNREACHABLE("v128 not implemented yet"); case Type::funcref: - case Type::externref: case Type::anyref: case Type::eqref: case Type::i31ref: @@ -63,8 +62,6 @@ char getSig(Type type) { return 'V'; case Type::funcref: return 'F'; - case Type::externref: - return 'X'; case Type::anyref: return 'A'; case Type::eqref: |