You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 132 in fix16_exp.c reads:
if(x == 0) return (result << 16);
but it probably should be
if(x == 1) return (result << 16);
If I understand correctly this is to test if x was dividable by 2. In other
words, do we need to calculate decimal part.
So if x was 2^n then x is 1 after the while loop as 2^0 is 1.
Original issue reported on code.google.com by [email protected] on 19 Dec 2013 at 2:06
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 19 Dec 2013 at 2:06The text was updated successfully, but these errors were encountered: