Changes in uspace/lib/softint/generic/multiplication.c [28a3e74:9539be6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softint/generic/multiplication.c
r28a3e74 r9539be6 109 109 * result does not fit in signed one */ 110 110 if (SOFTINT_CHECK_OF && ((t2 < t1) || (t2 & (1ull << 63)))) { 111 / * Error, overflow */111 // error, overflow 112 112 return (neg ? INT64_MIN : INT64_MAX); 113 113 }
Note:
See TracChangeset
for help on using the changeset viewer.