Depends on D80612.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libc/utils/FPUtil/FloatOperations.h | ||
---|---|---|
237–243 | After line 250, we want exponent to be less than mantissa width, but greater than 0. So, we handle these two special cases of -1 and -2 separately. |
libc/utils/FPUtil/FloatOperations.h | ||
---|---|---|
237–243 | Actually, exponent is greater than or equal to zero and less than mantissa width after line 250. |
Missing comma:
// If x is infinity, NaN or zero, return it.