https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102580

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
For an example GCC does optimize the following too:
int f(int x) {
  if (x < 0) 
    __builtin_unreachable();
  return x/3;
}

Reply via email to