dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and spec_case.

2005-03-05  Andreas Tobler  <a.tobler@schweiz.ch>

	* java/lang/dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and
	spec_case. Initialize pointer mlo.

	* java/lang/strtod.c (_strtod_r): Initialize pointers bb, bd, ds and
	delta.

	* java/lang/e_asin.c (__ieee754_asin): Initialize variable t.

	* java/lang/e_exp.c (__ieee754_exp): Initialize variables hi, lo
	and k.

	* java/lang/e_rem_pio2.c (__ieee754_rem_pio2): Initialize
	uninitialized variable z.

	* gnu/java/net/natPlainDatagramSocketImplPosix.cc (mcastGrp): Ifdef
	possible unused variables.

	* gnu/java/nio/natPipeImplPosix.cc (init): Remove self.

	* jawt.c: Include <stdlib.h> to fix implict declaration of malloc.

From-SVN: r95925
This commit is contained in:
Andreas Tobler 2005-03-05 08:47:58 +01:00 committed by Andreas Tobler
parent 537a2904e7
commit 2fdedf0462
9 changed files with 41 additions and 13 deletions

View file

@ -108,8 +108,8 @@ P5 = 4.13813679705723846039e-08; /* 0x3E663769, 0x72BEA4D0 */
double x;
#endif
{
double y,hi,lo,c,t;
int32_t k,xsb;
double y,hi = 0., lo = 0.,c,t;
int32_t k = 0, xsb;
uint32_t hx;
GET_HIGH_WORD(hx,x);