bug1878673.js (275B)
1 // Check proper handling of OOM in SIMD loads. 2 3 oomTest(function () { 4 let x = wasmTextToBinary(`(module 5 (memory 1 1) 6 (func 7 i32.const 16 8 v128.load8x8_s 9 i16x8.abs 10 drop) 11 )`); 12 new WebAssembly.Module(x); 13 });