1 2 3 4 5 6 7 8 9 10 11 12
void bar (int k) { void *label = (k) ? &&x : &&y; if (k) goto *label; x: if (k) dont_remove (); y: return; }