diff --git a/ChangeLog b/ChangeLog index 93118875cf..3a5d9a0f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 5 21:48:03 2008 Tanaka Akira + + * vm_insnhelper.c (vm_callee_setup_arg): it is not inlinable because + alloca is used. + Sat Jan 5 16:50:48 2008 Nobuyoshi Nakada * string.c (rb_str_resize): copy if old data is not empty diff --git a/vm_insnhelper.c b/vm_insnhelper.c index a7684e110e..ee2fc99c64 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -95,7 +95,7 @@ vm_pop_frame(rb_thread_t *th) /* 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) {