https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110386
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Known to fail| |10.1.0, 11.4.0, 9.5.0
Target Milestone|12.4 |10.5
Known to work| |9.1.0
Summary|[12/13/14 Regression] ICE |[10/11/12/13/14 Regression]
|with ABSU in backprop |ICE with ABSU in backprop
--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
here is one that is reproduced even in GCC 10.1.0:
```
int f(int a)
{
int c = c < 0 ? c : -c;
c = -c;
unsigned b = c;
unsigned t = b*a;
return t*t;
}
```
I suspect it was introduced when ABSU_EXPR was created.