summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1643888.js
blob: cf88b09c91d07f8e49a290ca7923dbd3c09ed7e7 (plain)
1
2
3
4
5
6
7
function f() {
    var y = this * this;
    for (var i = 0; i < 2000; i++) {
        assertEq(y >>> y, 0);
    }
}
f();