summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/unsignedShiftZero.js
blob: e199677d05f783f857717958465a3de947c36ef3 (plain)
1
2
3
4
5
6
7
8
function f(a) { 
    return a >>> 0; 
};

assertEq(f(-2147483647), 2147483649);
assertEq(f(-2147483648), 2147483648);
assertEq(f(-2147483649), 2147483647);