summaryrefslogtreecommitdiff
path: root/test/binary/bad-memory-init-no-data-count.txt
Commit message (Collapse)AuthorAgeFilesLines
* Enable bulk memory by default (#1728)Sam Clegg2021-10-131-2/+0
| | | | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have bulk memory merged yet so this change disables bulk memory when running some of those tests. This will be removed in a followup when we update the testsuite. Fixes: #1717
* Error on memory.init|data.drop without DataCount (#1297)Ben Smith2020-01-101-0/+31
See #1176. This was working in the spec interpreter because of the way the segment indexes are handled, but it's better to handle it earlier in the binary reader.