Fix test262 failures related to <, <=, in and instanceof

Fixed-by: @kzc
This commit is contained in:
Anthony Van de Gejuchte
2016-06-13 18:19:06 +02:00
parent 5c4cfaa0a7
commit d7971ba0e4
4 changed files with 92 additions and 9 deletions

View File

@@ -92,7 +92,7 @@ asm_mixed: {
function logSum(start, end) {
start = 0 | start, end = 0 | end;
var sum = 0, p = 0, q = 0;
for (p = start << 3, q = end << 3; (0 | q) > (0 | p); p = p + 8 | 0) sum += +log(values[p >> 3]);
for (p = start << 3, q = end << 3; (0 | p) < (0 | q); p = p + 8 | 0) sum += +log(values[p >> 3]);
return +sum;
}
function geometricMean(start, end) {