Fix bug with JS long emulator

This commit is contained in:
Alexey Andreev 2016-08-09 12:43:25 +03:00
parent 861742a2fb
commit d5e9168323

View File

@ -687,9 +687,6 @@ function Long_le(a, b) {
if (a.hi < b.hi) {
return true;
}
if ((a.lo >>> 1) <= (b.lo >>> 1)) {
return true;
}
var x = a.lo >>> 1;
var y = b.lo >>> 1;
if (x != y) {