ruby-changes:3403
From: ko1@a...
Date: 5 Jan 2008 21:49:24 +0900
Subject: [ruby-changes:3403] akr - Ruby:r14896 (trunk): * vm_insnhelper.c (vm_callee_setup_arg): it is not inlinable because
akr 2008-01-05 21:49:01 +0900 (Sat, 05 Jan 2008) New Revision: 14896 Modified files: trunk/ChangeLog trunk/vm_insnhelper.c Log: * vm_insnhelper.c (vm_callee_setup_arg): it is not inlinable because alloca is used. http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=14896&r2=14895&diff_format=u http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/vm_insnhelper.c?r1=14896&r2=14895&diff_format=u Index: ChangeLog =================================================================== --- ChangeLog (revision 14895) +++ ChangeLog (revision 14896) @@ -1,3 +1,8 @@ +Sat Jan 5 21:48:03 2008 Tanaka Akira <akr@f...> + + * vm_insnhelper.c (vm_callee_setup_arg): it is not inlinable because + alloca is used. + Sat Jan 5 16:50:48 2008 Nobuyoshi Nakada <nobu@r...> * string.c (rb_str_resize): copy if old data is not empty Index: vm_insnhelper.c =================================================================== --- vm_insnhelper.c (revision 14895) +++ vm_insnhelper.c (revision 14896) @@ -95,7 +95,7 @@ /* method dispatch */ -static inline int +static int vm_callee_setup_arg(rb_thread_t *th, rb_iseq_t *iseq, int argc, VALUE *argv, rb_block_t **block) { -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml