summaryrefslogtreecommitdiff
path: root/vm_method.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-19 02:00:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-19 02:00:27 +0000
commit33fc55acef6a2d7b79cf5ac084bbb94cb3b14b31 (patch)
tree1e6ce644f700a162f63bfcbf278fae6c5ffad0b6 /vm_method.c
parent3d57dfa01b8603da4d63a85014fa4cd0b640048e (diff)
* vm_method.c (me_opts): fixed optimized method aliasing.
[ruby-dev:38824] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vm_method.c b/vm_method.c
index 4b747e9d52..9ebeeb4a4b 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -758,6 +758,8 @@ me_opts(const rb_method_entry_t *me)
case VM_METHOD_TYPE_NOTIMPLEMENTED:
case VM_METHOD_TYPE_UNDEF:
return 0;
+ case VM_METHOD_TYPE_OPTIMIZED:
+ return (void *)me->body.optimize_type;
default:
rb_bug("rb_add_method: unsupported method type (%d)\n", me->type);
return 0;