https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117104
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2024-10-12 CC| |pinskia at gcc dot gnu.org Ever confirmed|0 |1 Status|UNCONFIRMED |NEW Component|target |tree-optimization --- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: ``` void g(); void f(long *a) { long b0 = a[0] > 0 ? a[0] : 0; long b1 = a[1] > 0 ? a[1] : 0; if ((b0|b1) == 0) g(); } ```