Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| skip-if: !this.SharedArrayBuffer
// Test that the SharedArrayBuffer memory is properly zeroed.
function f() {
var x = new SharedArrayBuffer(4096);
var y = new Int32Array(x);
assertEq(y[0], 0);
assertEq(y[1], 0);
assertEq(y[1023], 0);
}
f();