Merge "Bionic: Aliasing problems with frexpf"

This commit is contained in:
Jean-Baptiste Queru 2010-11-17 18:15:58 -08:00 committed by Android Code Review
commit ea0fe8563d

View File

@ -39,6 +39,6 @@ frexpf(float x, int *eptr)
}
*eptr += (ix>>23)-126;
hx = (hx&0x807fffff)|0x3f000000;
*(int*)&x = hx;
SET_FLOAT_WORD(x,hx);
return x;
}