Commit de6cbba6 by Michael Meissner

Fix ffsdi2 return types.

From-SVN: r3225
parent f11f1fb5
...@@ -265,14 +265,14 @@ __ffsdi2 (u) ...@@ -265,14 +265,14 @@ __ffsdi2 (u)
w.s.high = 0; w.s.high = 0;
w.s.low = ffs (uu.s.low); w.s.low = ffs (uu.s.low);
if (w.s.low != 0) if (w.s.low != 0)
return w; return w.ll;
w.s.low = ffs (uu.s.high); w.s.low = ffs (uu.s.high);
if (w.s.low != 0) if (w.s.low != 0)
{ {
w.s.low += BITS_PER_UNIT * sizeof (SItype); w.s.low += BITS_PER_UNIT * sizeof (SItype);
return w; return w.ll;
} }
return w; return w.ll;
} }
#endif #endif
......
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