The following wasm program should produce a memory out of bounds exception when `fill_oob` is called: ``` (module (import "env" "memory" (memory $mem0 1 1)) (func (export "fill_oob") (memory.fill (i32.const 0) (i32.const 42) (i32.const 65537)) ) ) ``` Right now, JSC will throw "Out of bounds table access" instead.
Created attachment 444879 [details] Patch
Comment on attachment 444879 [details] Patch r=me
Committed r286092 (244479@main): <https://commits.webkit.org/244479@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 444879 [details].
<rdar://problem/85630086>