Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed compiler warnings after uClibc code update
  • Loading branch information
slouken committed Nov 5, 2017
1 parent bcdf8b9 commit 34a8cf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/libm/e_atan2.c
Expand Up @@ -57,8 +57,8 @@ double attribute_hidden __ieee754_atan2(double y, double x)
ix = hx&0x7fffffff;
EXTRACT_WORDS(hy,ly,y);
iy = hy&0x7fffffff;
if(((ix|((lx|-lx)>>31))>0x7ff00000)||
((iy|((ly|-ly)>>31))>0x7ff00000)) /* x or y is NaN */
if(((ix|((lx|-(int32_t)lx)>>31))>0x7ff00000)||
((iy|((ly|-(int32_t)ly)>>31))>0x7ff00000)) /* x or y is NaN */
return x+y;
if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
Expand Down
2 changes: 1 addition & 1 deletion src/libm/e_fmod.c
Expand Up @@ -33,7 +33,7 @@ double attribute_hidden __ieee754_fmod(double x, double y)

/* purge off exception values */
if((hy|ly)==0||(hx>=0x7ff00000)|| /* y=0,or x not finite */
((hy|((ly|-ly)>>31))>0x7ff00000)) /* or y is NaN */
((hy|((ly|-(int32_t)ly)>>31))>0x7ff00000)) /* or y is NaN */
return (x*y)/(x*y);
if(hx<=hy) {
if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
Expand Down
2 changes: 1 addition & 1 deletion src/libm/s_floor.c
Expand Up @@ -58,7 +58,7 @@ double floor(double x)
if(j0==20) i0+=1;
else {
j = i1+(1<<(52-j0));
if(j<i1) i0 +=1 ; /* got a carry */
if(j<(u_int32_t)i1) i0 +=1 ; /* got a carry */
i1=j;
}
}
Expand Down

0 comments on commit 34a8cf7

Please sign in to comment.