summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-05 12:49:01 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-05 12:49:01 +0000
commit7a4220ee312de3d8857fcc271afd8547917fd67e (patch)
tree1c68a02a62e8846b0fd5193f351bcd3079456498
parent8b18ed7aee17162664d1adfe22836ccf50ccd2c4 (diff)
downloadruby-7a4220ee312de3d8857fcc271afd8547917fd67e.tar.gz
ruby-7a4220ee312de3d8857fcc271afd8547917fd67e.tar.xz
ruby-7a4220ee312de3d8857fcc271afd8547917fd67e.zip
* vm_insnhelper.c (vm_callee_setup_arg): it is not inlinable because
alloca is used. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--vm_insnhelper.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 93118875c..3a5d9a0f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jan 5 21:48:03 2008 Tanaka Akira <akr@fsij.org>
+
+ * 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@ruby-lang.org>
* string.c (rb_str_resize): copy if old data is not empty
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index a7684e110..ee2fc99c6 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)
{