summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug-1271507.js
blob: 88097aca8d1e8f36b64597d09ecc89a8295af404 (plain)
1
2
3
4
5
6
7
8
9
10
11
// |jit-test| allow-oom; skip-if: typeof oomAfterAllocations !== 'function'
lfcode = new Array();
oomAfterAllocations(100);
loadFile(file);
lfGlobal = newGlobal()
for (lfLocal in this)
  if (!(lfLocal in lfGlobal))
    lfGlobal[lfLocal] = this[lfLocal]
offThreadCompileToStencil(lfVarx);
var stencil = lfGlobal.finishOffThreadStencil();
lfGlobal.evalStencil(stencil);