https://gcc.gnu.org/bugzilla/show_bug.cgi?id=121809
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |INVALID
Status|WAITING |RESOLVED
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
> -ffloat-store \
Don't use this option. it is not needed if you are using
-fexcess-precision=standard .
The documentation for -ffloat-store
(https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#index-ffloat-store)
now reads:
If you do use -ffloat-store, you may need to modify your program to explicitly
store intermediate computations in temporary variables since -ffloat-store
handles rounding to IEEE format only on assignments and not casts as
-fexcess-precision=standard does.
Notice the cast part.