Add to log2f 2 more exceptional cases got when not using fma for polyeval.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
libc/src/math/generic/log2f.cpp | ||
---|---|---|
121 | You did not need this as a special case before so why is it required now? |
libc/src/math/generic/log2f.cpp | ||
---|---|---|
121 | These 2 extra cases I got when I intentionally not using FMA for polyeval, to mimic what would happen if FMA is missing. Another implementation option is only consider these 2 cases when FMA is missing with #ifdef. |
You did not need this as a special case before so why is it required now?