mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
insnhelper.ci: missed at last commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b1c5d848f8
commit
fc234a916a
1 changed files with 8 additions and 0 deletions
|
@ -60,6 +60,10 @@ vm_push_frame(rb_thread_t *th, rb_iseq_t *iseq, VALUE type,
|
|||
cfp->prof_time_chld = 0;
|
||||
#endif
|
||||
|
||||
if (VMDEBUG == 2) {
|
||||
SDR();
|
||||
}
|
||||
|
||||
return cfp;
|
||||
}
|
||||
|
||||
|
@ -84,6 +88,10 @@ vm_pop_frame(rb_thread_t *th)
|
|||
}
|
||||
#endif
|
||||
th->cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp);
|
||||
|
||||
if (VMDEBUG == 2) {
|
||||
SDR();
|
||||
}
|
||||
}
|
||||
|
||||
/* method dispatch */
|
||||
|
|
Loading…
Reference in a new issue