From fc234a916a18f27b47005358c8ae3f7e4205415a Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 12 Aug 2007 19:12:55 +0000 Subject: [PATCH] insnhelper.ci: missed at last commit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- insnhelper.ci | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/insnhelper.ci b/insnhelper.ci index 952af15af4..1fda1e82fe 100644 --- a/insnhelper.ci +++ b/insnhelper.ci @@ -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 */