Changeset f23dbf4 in mainline for uspace/lib/math/generic/pow.c
- Timestamp:
- 2021-06-18T16:06:17Z (3 years ago)
- Children:
- e1fc596c
- Parents:
- ca113cf
- git-author:
- Maurizio Lombardi <mlombard@…> (2018-11-25 16:57:56)
- git-committer:
- Maurizio Lombardi <mlombard@…> (2021-06-18 16:06:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/generic/pow.c
rca113cf rf23dbf4 136 136 if(k>20) { 137 137 j = ly>>(52-k); 138 if(( j<<(52-k))==ly) yisint = 2-(j&1);138 if((uint32_t)(j<<(52-k))==ly) yisint = 2-(j&1); 139 139 } else if(ly==0) { 140 140 j = iy>>(20-k);
Note:
See TracChangeset
for help on using the changeset viewer.