mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 02:10:29 +08:00
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:
parent
14291bc7fa
commit
4a696ca8e1
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user