summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1683535-1.js
blob: c85d301c3a30fcff76d8bb5a738107d998fd6cfe (plain)
1
2
3
4
5
6
function f(x, y) {
    (Math.log() ? 0 : Math.abs(~y)) ^ x ? x : x;
}
for (let i = 0; i < 52; i++) {
    f(0, -2147483649);
}