diff options
Diffstat (limited to 'src/asmjs')
-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 4a79d9caf..ddcb27d3d 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -56,7 +56,6 @@ AsmType wasmToAsmType(Type type) { assert(false && "v128 not implemented yet"); case Type::funcref: case Type::externref: - case Type::nullref: case Type::exnref: assert(false && "reference types are not supported by asm2wasm"); case Type::none: @@ -84,8 +83,6 @@ char getSig(Type type) { return 'F'; case Type::externref: return 'X'; - case Type::nullref: - return 'N'; case Type::exnref: return 'E'; case Type::none: |