function test() {
    for (var i=0; i<100000; i++) {
        var a = -0x80000000;
        assertEq(a >>> 32, 2147483648);
    }
}
test();