diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-03 12:41:36 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-03 12:41:36 +0000 |
| commit | ecc67046c9d4d7e97441d5b25be1cce7b4f8adba (patch) | |
| tree | 1110dd9e97c93eab59b2f54db3490892fa17cc8a | |
| parent | 1c81bee676558f206b34cfda867ba3272bc0061e (diff) | |
| download | ruby-ecc67046c9d4d7e97441d5b25be1cce7b4f8adba.tar.gz ruby-ecc67046c9d4d7e97441d5b25be1cce7b4f8adba.tar.xz ruby-ecc67046c9d4d7e97441d5b25be1cce7b4f8adba.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | eval.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +Sat Mar 3 21:41:31 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:07:05 2007 Akinori MUSHA <knu@iDaemons.org> * ext/thread/thread.c (push_list): Use ALLOC(). @@ -5482,7 +5482,7 @@ rb_with_disable_interrupt(proc, data) return result; } -static inline void +static void stack_check() { static int overflowing = 0; |
