[Bug ipa/96130] [10/11 Regression] ICE in analyze_function_body at gcc/ipa-fnsummary.c:2769 since r10-3199-g351e7c3b5fbd45bd
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Fri Jul 10 13:47:32 GMT 2020
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96130
--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase from the other PR which is shorter:
struct S { unsigned j : 3; };
int k, l, m;
void
foo (struct S x)
{
while (l != 5)
switch (x.j)
{
case 1:
case 3:
case 4:
case 6:
case 2:
case 5:
l = m;
case 7:
case 0:
k = 0;
default:
break;
}
}
More information about the Gcc-bugs
mailing list