summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/typedarray-static-load.js
blob: 09a05ed2fd4894aae7936ec650e119e0aad1ffc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var buffer = new ArrayBuffer(512 * 1024);
var ta = new Uint8Array(buffer);

function load() { return ta[0x1234]; }

load();
load();
load();

detachArrayBuffer(buffer);

load();