Commit c57b6780 by Jeff Law

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

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

From-SVN: r19275
parent 43be8193
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment