[BACK]Return to s_frexpf.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libm / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libm/src/s_frexpf.c between version 1.9 and 1.10

version 1.9, 2002/12/05 16:03:42 version 1.10, 2007/08/21 20:12:27
Line 40  frexpf(float x, int *eptr)
Line 40  frexpf(float x, int *eptr)
         }          }
         *eptr += (ix>>23)-126;          *eptr += (ix>>23)-126;
         hx = (hx&0x807fffff)|0x3f000000;          hx = (hx&0x807fffff)|0x3f000000;
         *(int*)(void*)&x = hx;          SET_FLOAT_WORD(x,hx);
         return x;          return x;
 }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb <webmaster@jp.NetBSD.org>