summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-03 12:40:29 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-03 12:40:29 +0000
commit44a1d06e1af5dc1e734a7201c33b17304cba2296 (patch)
tree84f842797ec8766d9facbe9043c93db80ccaf0a7
parente6e0e815abaf6547fe4d9d14dc7f6e8f683e98d3 (diff)
* eval.c (stack_check): Unset inline to fix build with GCC 3.4.6;
submitted by: NISHIMATSU Takeshi <t_nissie AT yahoo.co.jp> in [ruby-list:43218]. cf. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24556 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--eval.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f94c212e1..9ab899a98e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Mar 3 21:17:35 2007 Akinori MUSHA <knu@iDaemons.org>
+
+ * eval.c (stack_check): Unset inline to fix build with GCC 3.4.6;
+ submitted by: NISHIMATSU Takeshi <t_nissie AT yahoo.co.jp> in
+ [ruby-list:43218].
+ cf. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24556
+
Sat Mar 3 19:05:31 2007 Akinori MUSHA <knu@iDaemons.org>
* ext/thread/thread.c (push_list): Use ALLOC().
diff --git a/eval.c b/eval.c
index 64a43c5b54..a5b4e84b4c 100644
--- a/eval.c
+++ b/eval.c
@@ -5482,7 +5482,7 @@ rb_with_disable_interrupt(proc, data)
return result;
}
-static inline void
+static void
stack_check()
{
static int overflowing = 0;