diff options
author | DJ Delorie <dj@redhat.com> | 2005-12-17 20:51:56 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2005-12-17 20:51:56 +0000 |
commit | 648c3dc081349aa87fa7718605e2b3cd5ad737de (patch) | |
tree | 97a50d5bd6cfe2f30d0840a236844ab8e3ef78f9 /libiberty/floatformat.c | |
parent | 884adf15e0d7c5ca2ab2849bfc42fd1d4230bd67 (diff) | |
download | gdb-648c3dc081349aa87fa7718605e2b3cd5ad737de.zip gdb-648c3dc081349aa87fa7718605e2b3cd5ad737de.tar.gz gdb-648c3dc081349aa87fa7718605e2b3cd5ad737de.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/floatformat.c')
-rw-r--r-- | libiberty/floatformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libiberty/floatformat.c b/libiberty/floatformat.c index 28c9fbf..c97b6c5 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); |