blob: 14fc21a9f59164c7e311f3003cabed0d4cd54237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// |jit-test| exitstatus:6; skip-if: getBuildConfiguration("wasi")
timeout(1);
// Adapted from randomly chosen test: js/src/jit-test/tests/asm.js/testBug975182.js
(function() {
g = (function(t, foreign) {
"use asm";
var ff = foreign.ff;
function f() {
ff()
}
return f
})(this, {
ff: arguments.callee
})
})()
function m(f) {
var i = 0;
while (true) {
f();
if ((i++ % 1000) === 0)
gc();
}
}
m(g);
|