summaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-24 17:19:22 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-24 17:19:22 +0000
commit9fc443bf1d665535408ae014c5e741a7e7d72c70 (patch)
tree68ad623b23e418ebf9757d9d0c4cbf6e6d4d5d92 /iseq.c
parent11ff932d96c2b6d86d311ea76f187c00173b7dad (diff)
downloadruby-9fc443bf1d665535408ae014c5e741a7e7d72c70.tar.gz
ruby-9fc443bf1d665535408ae014c5e741a7e7d72c70.tar.xz
ruby-9fc443bf1d665535408ae014c5e741a7e7d72c70.zip
* call_cfunc.ci: removed.
* insnhelper.ci: added. this function includes all functions that vm insns need. * common.mk: ditto. * insnhelper.h, vm.h, vm.c: move some declaration. * gc.h: remove GC_CHECK() macro because GC.stress is more useful. * compile.c, iseq.c, vm_dump: ditto. * gc.h, thread.c: move a prototype decalaration. * debug.c, debug.h: rename some functions. * compile.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12605 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/iseq.c b/iseq.c
index e7482e9ba..b1f7ba220 100644
--- a/iseq.c
+++ b/iseq.c
@@ -664,7 +664,6 @@ ruby_iseq_disasm_insn(VALUE ret, VALUE *iseq, int pos,
child);
rb_str_concat(str, opstr);
- GC_CHECK();
if (types[j + 1]) {
rb_str_cat2(str, ", ");
}
@@ -801,8 +800,6 @@ ruby_iseq_disasm(VALUE self)
rb_str_cat2(str, "\n");
}
- GC_CHECK();
-
/* show each line */
for (i = 0; i < size;) {
i += ruby_iseq_disasm_insn(str, iseq, i, iseqdat, child);