From 452eafbd5459547e02c10974399fb192634e2c26 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 12 Aug 2007 19:12:55 +0000 Subject: insnhelper.ci: missed at last commit. git-svn-id: http://svn.ruby-lang.org/repos/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 952af15af..1fda1e82f 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 */ -- cgit