aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/s_scalbn.c
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/s_scalbn.c')
-rw-r--r--libjava/java/lang/s_scalbn.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/java/lang/s_scalbn.c b/libjava/java/lang/s_scalbn.c
index b06834e..36ee889 100644
--- a/libjava/java/lang/s_scalbn.c
+++ b/libjava/java/lang/s_scalbn.c
@@ -6,7 +6,7 @@
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
+ * software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
@@ -48,10 +48,10 @@ Interface Definition (Issue 2).
*/
-/*
+/*
* scalbn (double x, int n)
- * scalbn(x,n) returns x* 2**n computed by exponent
- * manipulation rather than by actually performing an
+ * scalbn(x,n) returns x* 2**n computed by exponent
+ * manipulation rather than by actually performing an
* exponentiation or a multiplication.
*/
@@ -76,18 +76,18 @@ tiny = 1.0e-300;
double x; int n;
#endif
{
- __int32_t k,hx,lx;
+ int32_t k,hx,lx;
EXTRACT_WORDS(hx,lx,x);
k = (hx&0x7ff00000)>>20; /* extract exponent */
if (k==0) { /* 0 or subnormal x */
if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
- x *= two54;
+ x *= two54;
GET_HIGH_WORD(hx,x);
- k = ((hx&0x7ff00000)>>20) - 54;
+ k = ((hx&0x7ff00000)>>20) - 54;
if (n< -50000) return tiny*x; /*underflow*/
}
if (k==0x7ff) return x+x; /* NaN or Inf */
- k = k+n;
+ k = k+n;
if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
if (k > 0) /* normal result */
{SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}