// S : tags min c $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include void foo( int x ) { void *y = &&x1; if ( x ) y = &&x2; x1: goto *y; x2: return; } int main() { foo( 0 ); }