https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122595
--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
I don't really understand how could that happen.
The testcase boils down to a non-local goto test very quickly, i.e.
int f(int n)
{
__label__ b, d;
void g(void) { n++; goto b; }
g();
int v[n];
b:
void h(void) { n++; goto d; }
h();
d:
return n;
}
int main()
{
if (9 != f(7))
__builtin_abort();
return 0;
}
Does that not work on power9 either?
