From 3f4d3b3eff5d8112a9da3674a5f5eea696ca3c7d Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Thu, 21 Jan 2021 22:09:47 +0000 Subject: [GC] Add dataref type (#3500) This is not 100% of everything, but is enough to get tests passing, which includes full binary and text format support, getting all switches to compile without error, and some additions to InstrumentLocals. --- src/tools/wasm-reduce.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/tools/wasm-reduce.cpp') diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp index 1d5164397..a9b3e3068 100644 --- a/src/tools/wasm-reduce.cpp +++ b/src/tools/wasm-reduce.cpp @@ -612,6 +612,7 @@ struct Reducer case Type::anyref: case Type::eqref: case Type::i31ref: + case Type::dataref: continue; // not implemented yet case Type::none: case Type::unreachable: @@ -640,6 +641,7 @@ struct Reducer case Type::anyref: case Type::eqref: case Type::i31ref: + case Type::dataref: continue; // not implemented yet case Type::none: case Type::unreachable: @@ -668,6 +670,7 @@ struct Reducer case Type::anyref: case Type::eqref: case Type::i31ref: + case Type::dataref: continue; // not implemented yet case Type::none: case Type::unreachable: @@ -696,6 +699,7 @@ struct Reducer case Type::anyref: case Type::eqref: case Type::i31ref: + case Type::dataref: continue; // not implemented yet case Type::none: case Type::unreachable: @@ -710,6 +714,7 @@ struct Reducer case Type::anyref: case Type::eqref: case Type::i31ref: + case Type::dataref: continue; // not implemented yet case Type::none: case Type::unreachable: -- cgit v1.2.3