Fix ffsdi2 return types.
From-SVN: r3225
This commit is contained in:
parent
f11f1fb5ce
commit
de6cbba6ea
@ -265,14 +265,14 @@ __ffsdi2 (u)
|
||||
w.s.high = 0;
|
||||
w.s.low = ffs (uu.s.low);
|
||||
if (w.s.low != 0)
|
||||
return w;
|
||||
return w.ll;
|
||||
w.s.low = ffs (uu.s.high);
|
||||
if (w.s.low != 0)
|
||||
{
|
||||
w.s.low += BITS_PER_UNIT * sizeof (SItype);
|
||||
return w;
|
||||
return w.ll;
|
||||
}
|
||||
return w;
|
||||
return w.ll;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user