Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/math/generic/trunc.c

    rb336613f r47f7390f  
    6868        } else {
    6969                /* Truncate irrelevant fraction bits */
    70                 val.parts.fraction &= ~(UINT64_C(0x000fffffffffffff) >> exp);
     70                val.parts.fraction &= UINT64_C(0x000fffffffffffff) >> exp;
    7171        }
    7272       
Note: See TracChangeset for help on using the changeset viewer.