summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1329933.js
blob: 582044feeebd6821bf86165fea002582ce47ef12 (plain)
1
2
3
4
5
6
7
8
9
10
function g(f) {
    for (var j = 0; j < 999; ++j) {
        f(0 / 0);
    }
}
function h(x) {
    x < 1 ? 0 : Math.imul(x || 0);
}
g(h);