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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jsm28 at gcc dot gnu.org

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
The PR104485 case in 526.blender_r has a special case of fmod (x, 1.0) which
could be simplified further as fmod (a, 1.) = a - trunc (a) if side-cases
with NaNs, Infs, signed zeros, etc. allow.  Btw, trunc rounds to the nearest
integer so that's probably not wanted, instead floor looks more appropriate
when a is positive.

Reply via email to