summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1686207.js
blob: 4a2637408c2f8b14f3cdf19c4e8c0ce9a029685e (plain)
1
2
3
4
5
6
7
8
9
10
11
function f(x, y) {
    x >> (y >>> 0)
}

with ({}) {}

f(-1, -1)
f(1.5, 0)
for (var i = 0; i < 100; i++) {
    f(0, 0);
}