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:
ko1 2007-08-12 19:12:55 +00:00
Родитель b1c5d848f8
Коммит fc234a916a
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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 */