Enable fast power

Change-Id: I00a91381f63cde62d9e7cf7e17f75869294cf2df
main
satok 2011-04-27 16:29:27 +09:00
parent dbe882ac08
commit 0b6b0a5a98
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ inline static void multiplyIntCapped(const int multiplier, int *base) {
}
inline static int powerIntCapped(const int base, const int n) {
if (false && base == 2) {
if (base == 2) {
return n < 31 ? 1 << n : S_INT_MAX;
} else {
int ret = base;