summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1308048.js
blob: dad50914bbf26ae553e613e05ac046b72686a997 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| skip-if: helperThreadCount() === 0

m = 'x';
for (var i = 0; i < 10; i++)
    m += m;
offThreadCompileScript("", ({elementAttributeName: m}));
var n = newGlobal();
gczeal(2,1);
n.runOffThreadScript();