diff options
author | DJ Delorie <dj@delorie.com> | 2005-12-17 20:51:56 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2005-12-17 20:51:56 +0000 |
commit | 479b6ee644da00a9e5aa0429d9c1d25c6c953985 (patch) | |
tree | c9a9e98a7d5715018635e1b501eb2edd416f74ce | |
parent | 4e518898ec66e137ba903d1c231c46f2991940af (diff) | |
download | gdb-479b6ee644da00a9e5aa0429d9c1d25c6c953985.tar.gz |
merge from gcc
-rw-r--r-- | libiberty/ChangeLog | 7 | ||||
-rw-r--r-- | libiberty/floatformat.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 85e96bad04b..4d5caf37981 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,10 @@ +2005-12-17 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * floatformat.c (floatformat_i387_ext_is_valid): Use explicit cast + to convert from "from". + (floatformat_to_double): Likewise. + (floatformat_from_double): Use explicit cast to convert from "to". + 2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com> PR java/9861 diff --git a/libiberty/floatformat.c b/libiberty/floatformat.c index 28c9fbf662d..c97b6c57f0a 100644 --- a/libiberty/floatformat.c +++ b/libiberty/floatformat.c @@ -143,7 +143,7 @@ floatformat_i387_ext_is_valid (const struct floatformat *fmt, const void *from) nor ~0, the intbit must also be set. Only if the exponent is zero can it be zero, and then it must be zero. */ unsigned long exponent, int_bit; - const unsigned char *ufrom = from; + const unsigned char *ufrom = (const unsigned char *) from; exponent = get_field (ufrom, fmt->byteorder, fmt->totalsize, fmt->exp_start, fmt->exp_len); @@ -295,7 +295,7 @@ void floatformat_to_double (const struct floatformat *fmt, const void *from, double *to) { - const unsigned char *ufrom = from; + const unsigned char *ufrom = (const unsigned char *) from; double dto; long exponent; unsigned long mant; @@ -471,7 +471,7 @@ floatformat_from_double (const struct floatformat *fmt, double mant; unsigned int mant_bits, mant_off; int mant_bits_left; - unsigned char *uto = to; + unsigned char *uto = (unsigned char *) to; dfrom = *from; memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT); |