Add regression tests of BA issue cases (#3462)

This commit is contained in:
Zhang, Yi
2024-05-23 13:53:53 +08:00
committed by GitHub
parent 6fdfedb08a
commit f378edc408
149 changed files with 2763 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,11 @@
(module
(type (func))
(func $_start
(memory.grow (i32.const 1))
drop
(memory.fill (i32.const 65536) (i32.const 0) (i32.const 10))
)
(memory 1)
(export "memory" (memory 0))
(export "_start" (func $_start))
)