summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1154971.js
blob: ec49a88fcd067d73c960e34c1f9bc77ad8915118 (plain)
1
2
3
4
5
6
7
8
9
10
function f(x, y) {
    return Math.imul(0, Math.imul(y | 0, x >> 0))
}
for (var i = 0; i < 2; i++) {
    try {
        (f(1 ? 0 : undefined))()
    } catch (e) {}
}