Changeset f08da1c in mainline for uspace/lib/c/generic/ieee_double.c
- Timestamp:
- 2019-02-08T12:55:28Z (6 years ago)
- Children:
- d3c129d
- Parents:
- d64303b
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-01-26 09:21:29)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-08 12:55:28)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ieee_double.c
rd64303b rf08da1c 92 92 if (ret.is_denormal) { 93 93 ret.pos_val.significand = raw_significand; 94 ret.pos_val.exponent = 1 - exponent_bias; 94 if (raw_significand == 0) { 95 ret.pos_val.exponent = -exponent_bias; 96 } else { 97 ret.pos_val.exponent = 1 - exponent_bias; 98 } 99 95 100 ret.is_accuracy_step = false; 96 101 } else {
Note:
See TracChangeset
for help on using the changeset viewer.