summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1620215.js
blob: 70b95ca630d94b7ebbd06e402465f9b500cc3adf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function test(x) {
    for (var i = 0; i < 10; ++i) {
        // Create an IC specialized for lazy arguments when Baseline runs.
        arguments[0];
        // De-optimize lazy arguments by accessing an out-of-bounds argument.
        arguments[10];

        // Overwrite |arguments| to get a Value type.
        arguments = 0;

        for (var j = 0; j < 1500; j++) {}
        return;
    }
}
test(1);