libgcc2.c (__floatdisf): Fix a couple typos.

8
        * libgcc2.c (__floatdisf): Fix a couple typos.

From-SVN: r19275
This commit is contained in:
Jeff Law 1998-04-17 15:39:12 -06:00
parent 43be8193db
commit c57b6780fe
1 changed files with 2 additions and 2 deletions

View File

@ -1043,8 +1043,8 @@ __floatdisf (DItype u)
&& DF_SIZE > (DI_SIZE - DF_SIZE + SF_SIZE))
{
#define REP_BIT ((USItype) 1 << (DI_SIZE - DF_SIZE))
if (! (- ((UDItype) 1 << DF_SIZE) < u
&& u < ((UDItype) 1 << DF_SIZE)))
if (! (- ((DItype) 1 << DF_SIZE) < u
&& u < ((DItype) 1 << DF_SIZE)))
{
if ((USItype) u & (REP_BIT - 1))
u |= REP_BIT;