blob: cb4890503dea801d5ff0eb2c24374d1b8f92bd17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| skip-if: helperThreadCount() === 0
gczeal(0);
gczeal(4);
function a(b) {
c = cacheEntry(b);
evaluate(c, {
saveIncrementalBytecode: true
});
return c;
}
offThreadDecodeStencil(a(""));
|