[Bug tree-optimization/100061] Comparison guarding undefined behaviour disappears
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100061 --- Comment #2 from Richard Biener --- It needs quite some refactoring to distinguish the short-circuiting case from the non-short-circuiting one. if (b > c + 1) if (b > c) is OK to combine while if (b > c) if (b > c + 1) is not.
[Bug tree-optimization/100061] Comparison guarding undefined behaviour disappears
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100061 Richard Biener changed: What|Removed |Added Last reconfirmed||2021-04-13 Component|c