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

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This should also optimize to that:
```
int j(int x)
{
  int t = x == -1;
  int t1 = x == 1;
  return t | -t1;
}
```

Reply via email to