Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/ieee_double.c

    rf08da1c r0a520db  
    4545        const int exponent_bias = 1075;
    4646
    47         static_assert(sizeof(val) == sizeof(uint64_t));
     47        static_assert(sizeof(val) == sizeof(uint64_t), "");
    4848
    4949        union {
     
    9292                if (ret.is_denormal) {
    9393                        ret.pos_val.significand = raw_significand;
    94                         if (raw_significand == 0) {
    95                                 ret.pos_val.exponent = -exponent_bias;
    96                         } else {
    97                                 ret.pos_val.exponent = 1 - exponent_bias;
    98                         }
    99 
     94                        ret.pos_val.exponent = 1 - exponent_bias;
    10095                        ret.is_accuracy_step = false;
    10196                } else {
Note: See TracChangeset for help on using the changeset viewer.