From bd52b8845aa8dcbecc8fc14d77a2bd4e64ad6e75 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Wed, 15 Jul 2020 16:39:52 -0700 Subject: Remove ref.is_null type parameter (#1474) See https://github.com/WebAssembly/reference-types/issues/99. This change also updates the testsuite, so the spec tests pass too. In addition, the behavior of `br_table` is no longer different from MVP, and has a text to confirm this. That is now fixed in `type-checker.cc` too. --- src/binary-reader-logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/binary-reader-logging.h') diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h index f5936562..fd1ac13f 100644 --- a/src/binary-reader-logging.h +++ b/src/binary-reader-logging.h @@ -201,7 +201,7 @@ class BinaryReaderLogging : public BinaryReaderDelegate { Result OnTableFillExpr(Index table) override; Result OnRefFuncExpr(Index index) override; Result OnRefNullExpr(Type type) override; - Result OnRefIsNullExpr(Type type) override; + Result OnRefIsNullExpr() override; Result OnNopExpr() override; Result OnRethrowExpr() override; Result OnReturnCallExpr(Index func_index) override; -- cgit v1.2.3