summaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-28 18:14:11 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-28 18:14:11 +0000
commit3f9bf06c1d29bdc44d6e4fef9b79e572605a72b7 (patch)
treee31baf8445e375467352472559e373e2175fb5f3 /proc.c
parent4d1c938eb0347bd1bee5960417e1cd706f91a31a (diff)
downloadruby-3f9bf06c1d29bdc44d6e4fef9b79e572605a72b7.tar.gz
ruby-3f9bf06c1d29bdc44d6e4fef9b79e572605a72b7.tar.xz
ruby-3f9bf06c1d29bdc44d6e4fef9b79e572605a72b7.zip
* proc.c (rb_method_entry_arity): support not_implemented method.
(I have no idea to test it) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/proc.c b/proc.c
index 3b83b17c3..1d5189a84 100644
--- a/proc.c
+++ b/proc.c
@@ -1487,6 +1487,9 @@ rb_method_entry_arity(const rb_method_entry_t *me)
return -(iseq->argc + 1 + iseq->arg_post_len);
}
}
+ case VM_METHOD_TYPE_UNDEF:
+ case VM_METHOD_TYPE_NOTIMPLEMENTED:
+ return 0;
case VM_METHOD_TYPE_OPTIMIZED: {
switch (me->body.optimize_type) {
case OPTIMIZED_METHOD_TYPE_SEND:
@@ -1495,9 +1498,8 @@ rb_method_entry_arity(const rb_method_entry_t *me)
break;
}
}
- default:
- rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
}
+ rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
}
/*