https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78413
Zhendong Su <su at cs dot ucdavis.edu> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |su at cs dot ucdavis.edu
--- Comment #6 from Zhendong Su <su at cs dot ucdavis.edu> ---
Below is another test case that triggers the same ICE:
-------------------------------------------------
int a, b, c, d, e, f, g;
void fn1 ()
{
c &= 1;
while (c)
{
for (a = 0; a < 2; a++)
e = f && g;
if (b && d)
break;
}
}