ruby-changes:25185
From: shugo <ko1@a...>
Date: Wed, 17 Oct 2012 10:51:38 +0900 (JST)
Subject: [ruby-changes:25185] shugo:r37237 (trunk): * vm_insnhelper.c (vm_search_method): fix a build error that occurs
shugo 2012-10-17 10:50:53 +0900 (Wed, 17 Oct 2012) New Revision: 37237 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37237 Log: * vm_insnhelper.c (vm_search_method): fix a build error that occurs when OPT_INLINE_METHOD_CACHE is 0. Modified files: trunk/ChangeLog trunk/vm_insnhelper.c Index: ChangeLog =================================================================== --- ChangeLog (revision 37236) +++ ChangeLog (revision 37237) @@ -1,3 +1,8 @@ +Wed Oct 17 10:48:40 2012 Shugo Maeda <shugo@r...> + + * vm_insnhelper.c (vm_search_method): fix a build error that occurs + when OPT_INLINE_METHOD_CACHE is 0. + Wed Oct 17 08:46:47 2012 Koichi Sasada <ko1@a...> * benchmark/bm_vm2_dstr.rb: add a benchmark to measure Index: vm_insnhelper.c =================================================================== --- vm_insnhelper.c (revision 37236) +++ vm_insnhelper.c (revision 37237) @@ -857,7 +857,7 @@ ci->call = vm_call_general; } #else - ci->method = rb_method_entry(klass, id, &ci->defined_class); + ci->me = rb_method_entry(klass, ci->mid, &ci->defined_class); ci->call = vm_call_general; ci->klass = klass; #endif -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/