https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70159
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Well, as tmax + tmin is commutative, this one actually should be optimized into just (min - a) * inv + (max - a) * inv or with -Ofast perhaps to (min - a + max - a) * inv.