fp-bit.c (pack_d): Cast to ``fractype'' for long long shifts.

* config/fp-bit.c (pack_d): Cast to ``fractype'' for long long
        shifts.

From-SVN: r47923
This commit is contained in:
Momchil Velikov 2001-12-12 08:59:23 +02:00 committed by Richard Henderson
parent 14291bc7fa
commit 4a696ca8e1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-12-11 Momchil Velikov <velco@fadata.bg>
* config/fp-bit.c (pack_d): Cast to ``fractype'' for long long
shifts.
2001-12-11 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.h (TARGET_FIXUP_EV5_PREFETCH): New.

View File

@ -222,7 +222,7 @@ pack_d ( fp_number_type * src)
}
else
{
int lowbit = (fraction & ((1 << shift) - 1)) ? 1 : 0;
int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
fraction = (fraction >> shift) | lowbit;
}
if ((fraction & GARDMASK) == GARDMSB)