aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-01 10:50:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-01 10:50:49 +0000
commit31f9490ef227b5e5d7e3403a7647b1dc8d28eee3 (patch)
tree457142e72e19d4724c6fbad6652e680d46bd4ee7 /insns.def
parent32dbbbb1c9cb7eb545d2c3da6fca5f099b758682 (diff)
downloadruby-31f9490ef227b5e5d7e3403a7647b1dc8d28eee3.tar.gz
revert r51991
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def8
1 files changed, 3 insertions, 5 deletions
diff --git a/insns.def b/insns.def
index ad6c4bc747..a923d3a4d6 100644
--- a/insns.def
+++ b/insns.def
@@ -941,10 +941,10 @@ send
(VALUE val) // inc += - (int)(ci->orig_argc + ((ci->flag & VM_CALL_ARGS_BLOCKARG) ? 1 : 0));
{
struct rb_calling_info calling;
- VALUE mark = vm_caller_setup_arg_block(th, reg_cfp, &calling, ci, blockiseq, FALSE);
+
+ vm_caller_setup_arg_block(th, reg_cfp, &calling, ci, blockiseq, FALSE);
vm_search_method(ci, cc, calling.recv = TOPN(calling.argc = ci->orig_argc));
CALL_METHOD(&calling, ci, cc);
- RB_GC_GUARD(mark);
}
DEFINE_INSN
@@ -989,15 +989,13 @@ invokesuper
(...)
(VALUE val) // inc += - (int)(ci->orig_argc + ((ci->flag & VM_CALL_ARGS_BLOCKARG) ? 1 : 0));
{
- VALUE mark;
struct rb_calling_info calling;
calling.argc = ci->orig_argc;
- mark = vm_caller_setup_arg_block(th, reg_cfp, &calling, ci, blockiseq, TRUE);
+ vm_caller_setup_arg_block(th, reg_cfp, &calling, ci, blockiseq, TRUE);
calling.recv = GET_SELF();
vm_search_super_method(th, GET_CFP(), &calling, ci, cc);
CALL_METHOD(&calling, ci, cc);
- RB_GC_GUARD(mark);
}
/**