https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109025
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |13.0 --- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Confirmed, reduced a little further and valid well defined code: ``` int func_4(int t, int b) { for (int tt1 = 0; tt1 < 1024 ; tt1 ++) { for (int tt = 0; tt < 1024; tt ++) if (b) t ^= 10; t ^= 10; } return t; } ```