summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug1301191.js
blob: 2624907ee6be40035431dabd44ab55f29c70608a (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);