summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug655998.js
blob: a48eb32152bb1ab734f86b2e843166465195e457 (plain)
1
2
3
4
5
6
7
function f(x) {
    var y;
    gc();
    ++x.x;
}
f(1);
f.call(2, 3);