summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/memory-04.js
blob: 794c93802d4a466d6116d0e7198a62323c91e6b6 (plain)
1
2
3
4
5
6
7
8
function foo(x, y) {
    gc();
    var z = x + y;
    print(z);
}

foo(0x7ffffff0, 100);