summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/recover-object-bug1174322.js
blob: d5e1066b8e09607ec62bb6d009c997d4ef4855af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function f(y) {
    Math.min(NaN) ? a : y
}
function g(y) {
    f({
        e: false
    })
}
x = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
     0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
for (var j = 0; j < 23; ++j) {
    g(x[j])
}