summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug754713-4.js
blob: 84afc4554dfacc21e264af35737ff6a71a236858 (plain)
1
2
3
4
5
6
function f(x) {
    var y = (x < 0) ? 1 : 2;
    Math.floor(0); // bailout
}
Math.floor(0);
f(1);