diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-27 18:08:32 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-27 18:08:32 -0700 |
| commit | 372554829200dfcc1e6c5895692ab9dd5d18a7b4 (patch) | |
| tree | 201e330cc55acb164d34c79b22d9ae504e2f2abf /luni/src/main/native/cbigint.c | |
| parent | 3d94ac1c8d959bfe339a8b108c39f74d2088e0ba (diff) | |
| parent | f5597e626ecf7949d249dea08c1a2964d890ec11 (diff) | |
| download | libcore-372554829200dfcc1e6c5895692ab9dd5d18a7b4.zip libcore-372554829200dfcc1e6c5895692ab9dd5d18a7b4.tar.gz libcore-372554829200dfcc1e6c5895692ab9dd5d18a7b4.tar.bz2 | |
Merge change 5582
* changes:
Integrate luni module (but not tests) to Harmony r772995.
Diffstat (limited to 'luni/src/main/native/cbigint.c')
| -rw-r--r-- | luni/src/main/native/cbigint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/luni/src/main/native/cbigint.c b/luni/src/main/native/cbigint.c index 0f65ca0..77ee0f8 100644 --- a/luni/src/main/native/cbigint.c +++ b/luni/src/main/native/cbigint.c @@ -18,7 +18,7 @@ #include <string.h> #include "cbigint.h" -#if defined(LINUX) || defined(FREEBSD) +#if defined(LINUX) || defined(FREEBSD) || defined(ZOS) #define USE_LL #endif @@ -691,7 +691,7 @@ timesTenToTheEHighPrecision (U_64 * result, IDATA length, jint e) */ /* Replace the current implementaion which performs a * "multiplication" by 10 e number of times with an actual - * mulitplication. 10e19 is the largest exponent to the power of ten + * multiplication. 10e19 is the largest exponent to the power of ten * that will fit in a 64-bit integer, and 10e9 is the largest exponent to * the power of ten that will fit in a 64-bit integer. Not sure where the * break-even point is between an actual multiplication and a |
