https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123111
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://gcc.gnu.org/bugzill
| |a/show_bug.cgi?id=51244
--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The testcase itself can workaround the issue too:
```
int test_03 (struct S* i)
{
if ((i->a != 2 && i->a != 3))
return -6;
if (i->a > test_03_00 (i->b))
return -5;
return -55;
}
```