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

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced:
```
void a(int);
double b;
void c(int d, int e) {
  int f = e;
  if (b < 0)
    f += d;
  a(f);
  a(e);
}
```

Reply via email to