Changes in uspace/lib/math/generic/trunc.c [47f7390f:b336613f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/math/generic/trunc.c
r47f7390f rb336613f 68 68 } else { 69 69 /* Truncate irrelevant fraction bits */ 70 val.parts.fraction &= UINT64_C(0x000fffffffffffff) >> exp;70 val.parts.fraction &= ~(UINT64_C(0x000fffffffffffff) >> exp); 71 71 } 72 72
Note:
See TracChangeset
for help on using the changeset viewer.