Deleted Added
full compact
17c17
< __FBSDID("$FreeBSD: head/lib/msun/src/e_j1f.c 279240 2015-02-24 16:45:16Z pfg $");
---
> __FBSDID("$FreeBSD: head/lib/msun/src/e_j1f.c 279491 2015-03-01 20:26:03Z kargl $");
66c66
< if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
---
> if(ix>0x58000000) z = (invsqrtpi*cc)/sqrtf(y); /* |x|>2**49 */
74c74
< if(ix<0x32000000) { /* |x|<2**-27 */
---
> if(ix<0x39000000) { /* |x|<2**-13 */
132c132
< if(ix>0x48000000) z = (invsqrtpi*ss)/sqrtf(x);
---
> if(ix>0x58000000) z = (invsqrtpi*ss)/sqrtf(x); /* |x|>2**49 */
139c139
< if(ix<=0x24800000) { /* x < 2**-54 */
---
> if(ix<=0x33000000) { /* x < 2**-25 */
230,231c230,231
< else if(ix>=0x40f71c58){p = pr5; q= ps5;}
< else if(ix>=0x4036db68){p = pr3; q= ps3;}
---
> else if(ix>=0x409173eb){p = pr5; q= ps5;}
> else if(ix>=0x4036d917){p = pr3; q= ps3;}
325,327c325,327
< if(ix>=0x40200000) {p = qr8; q= qs8;}
< else if(ix>=0x40f71c58){p = qr5; q= qs5;}
< else if(ix>=0x4036db68){p = qr3; q= qs3;}
---
> if(ix>=0x41000000) {p = qr8; q= qs8;}
> else if(ix>=0x409173eb){p = qr5; q= qs5;}
> else if(ix>=0x4036d917){p = qr3; q= qs3;}