test_bulk_memory.wat 234 B

123456789101112
  1. (module
  2. (memory 1)
  3. (func $memory_fill_test (param $dst i32) (param $val i32) (param $len i32)
  4. local.get $dst
  5. local.get $val
  6. local.get $len
  7. memory.fill
  8. )
  9. (export "memory_fill_test" (func $memory_fill_test))
  10. )