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);
}
```
pinskia at gcc dot gnu.org via Gcc-bugs Wed, 11 Feb 2026 13:18:34 -0800
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);
}
```