// S : tags min c kleetodo $TAGS // S : expect --result valid // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include #include #include void f( void (*pc)( void ) ) { struct _VM_Frame *frame = __vm_ctl_get( _VM_CR_Frame ); __dios_jump( frame->parent, pc, -1 ); assert( 0 ); } int main() { f( &&next ); assert( 0 ); next: return 0; }