fuzzsafe-bug1645610.js (447B)
1 // |jit-test| --fuzzing-safe; skip-if: this.getErrorNotes 2 // 3 // The meaning of the line above is that the test case is to be run only with 4 // --fuzzing-safe and only if that setting (or similar settings) is effectful. 5 6 WebAssembly.Module.exports(new WebAssembly.Module(wasmTextToBinary(` 7 (module 8 (func (;0;)) 9 (func (;1;)) 10 (func (;2;)) 11 (func (;3;) (result i32) 12 i32.const 42) 13 (export "memo" (func 3)) 14 (export "main" (func 3))) 15 `)));