blob: b072b5165188287c907f6fc7a24524920103021f [file] [log] [blame]
int a;
void* p;
void foo (void)
{
switch (a)
{
a0: case 0: p = &&a1;
a1: case 1: p = &&a2;
a2: default: p = &&a1;
}
goto *p;
}