Related to asm2wasm translation. Here is the extracted repro snippet:
var foo = (function Module(global, env, buffer) {
"use asm";
var i8 = new global.Int8Array(buffer);
function foo() { i8 ; }
return { foo: foo };
})(this, {}, f(64 * 1024)).foo;
ClusterFuzz testcase 5548773314134016 is flaky and no longer reproduces, so closing issue.
If this is incorrect, please add ClusterFuzz-Wrong label and re-open the issue.
Comment 1 by mstarzinger@chromium.org
, Feb 22 2017Owner: bradnelson@chromium.org
Status: Assigned (was: Untriaged)
Related to asm2wasm translation. Here is the extracted repro snippet: var foo = (function Module(global, env, buffer) { "use asm"; var i8 = new global.Int8Array(buffer); function foo() { i8 ; } return { foo: foo }; })(this, {}, f(64 * 1024)).foo;