https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110965
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Blah, here is a testcase which shows this is causing a regression in GCC 14 (after r14-1597-g64d90d06d2db43): ``` bool f(long long l){ int t = (int)l; if (t == 1) return true; if (t == 2) return true; if (t == 3) return true; return false; } ```