diff options
author | Dmitry Bezhetskov <dbezhetskov@igalia.com> | 2021-11-16 22:02:46 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 07:02:46 -0800 |
commit | 5d4955c0e819ce0d8943824f3d458894be628fd3 (patch) | |
tree | 79749c6f5b8192d8ff3d44ef6ac6be192309dbcd /src/binary-reader-ir.cc | |
parent | d61a78988001cdc6d364d91cfb9b2088b9ae2798 (diff) | |
download | wabt-5d4955c0e819ce0d8943824f3d458894be628fd3.tar.gz wabt-5d4955c0e819ce0d8943824f3d458894be628fd3.tar.bz2 wabt-5d4955c0e819ce0d8943824f3d458894be628fd3.zip |
Support function references in parameters and results of functions and blocks. (#1695)
Diffstat (limited to 'src/binary-reader-ir.cc')
-rw-r--r-- | src/binary-reader-ir.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/binary-reader-ir.cc b/src/binary-reader-ir.cc index 121e2811..f454174b 100644 --- a/src/binary-reader-ir.cc +++ b/src/binary-reader-ir.cc @@ -185,7 +185,7 @@ class BinaryReaderIR : public BinaryReaderNop { Result OnTableGrowExpr(Index table_index) override; Result OnTableSizeExpr(Index table_index) override; Result OnTableFillExpr(Index table_index) override; - Result OnRefFuncExpr(Index func_index) override; + Result OnRefFuncExpr(Index type_index) override; Result OnRefNullExpr(Type type) override; Result OnRefIsNullExpr() override; Result OnNopExpr() override; @@ -943,8 +943,8 @@ Result BinaryReaderIR::OnTableFillExpr(Index table_index) { return AppendExpr(MakeUnique<TableFillExpr>(Var(table_index))); } -Result BinaryReaderIR::OnRefFuncExpr(Index func_index) { - return AppendExpr(MakeUnique<RefFuncExpr>(Var(func_index))); +Result BinaryReaderIR::OnRefFuncExpr(Index type_index) { + return AppendExpr(MakeUnique<RefFuncExpr>(Var(type_index))); } Result BinaryReaderIR::OnRefNullExpr(Type type) { |