diff options
author | Keith Winstein <208955+keithw@users.noreply.github.com> | 2024-10-30 20:00:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 20:00:59 -0700 |
commit | 6a5cbb94fad9b375469d6433429521988b1de20b (patch) | |
tree | 847c7b09e581bdeb5de8ed1fb014cd643b7b1d0e /src/binary-reader.cc | |
parent | 9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09 (diff) | |
download | wabt-6a5cbb94fad9b375469d6433429521988b1de20b.tar.gz wabt-6a5cbb94fad9b375469d6433429521988b1de20b.tar.bz2 wabt-6a5cbb94fad9b375469d6433429521988b1de20b.zip |
Update testsuite (#2495)
The memory64 `table.wast` test has started to depend on
function-references and gc (which WABT doesn't support yet), so vendor
an older version of the test.
Diffstat (limited to 'src/binary-reader.cc')
-rw-r--r-- | src/binary-reader.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index a0b31787..33801a7d 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -3044,7 +3044,8 @@ Result BinaryReader::ReadModule(const ReadModuleOptions& options) { "function signature count != function body count"); // This is checked in ReadDataSection, but it must be checked at the end too, // in case the data section was omitted. - ERROR_IF(num_data_segments_ == 0 && data_count_ != kInvalidIndex, + ERROR_IF(num_data_segments_ == 0 && data_count_ != kInvalidIndex && + data_count_ != 0, "Data section missing but DataCount non-zero"); CALLBACK0(EndModule); |