adding quicker dispatches to avoid touching arguments[i]

This commit is contained in:
Danny Yoo 2012-02-21 20:45:40 -05:00
parent c7de7c5f7c
commit b7ac392030
2 changed files with 5 additions and 1 deletions

View File

@ -884,6 +884,8 @@
return checkedMulSlowPath(M, Array.prototype.slice.call(arguments, 1));
}
return prod;
} else {
return plt.baselib.numbers.multiply(x, y);
}
}
// Secondary path: if everything is a fixnum...
@ -928,6 +930,8 @@
return checkedSubSlowPath(M, Array.prototype.slice.call(arguments, 1));
}
return sum;
} else {
return plt.baselib.numbers.subtract(x, y);
}
}
return checkedSubSlowPath(M, Array.prototype.slice.call(arguments, 1));

View File

@ -7,4 +7,4 @@
(provide version)
(: version String)
(define version "1.161")
(define version "1.162")