summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1105574-ra-sink.js
blob: d67966081b321539c144d6b6381335497ce5c3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
function f1(x) {
    assertEq(Math.tan((((x >>> 0) | 0) >>> 0) | 0, f2()) < -1, !!x);
}
var f2 = function() { };

f1(0);
f2 = function() { };
f1(0);
f1(0);
f1(-1);