[Bug c++/107458] std::fma generates slow scalar-call

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Sun Oct 30 00:13:24 GMT 2022


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107458

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The C++ standard defines fma as doing (a*b) + c in infinite precision (and then
round), this is why GCC cannot inline if your target does not have a FMA
instruction.

There is still no bug here.


More information about the Gcc-bugs mailing list