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