aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-07 04:25:20 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-07 04:25:20 +0000
commitb309a3698de74e3cf97b5c3d9393c9d3e735f469 (patch)
tree2cd7fda0c174dea41f7573c646a552a0bf1fa9b3
parent83db393e489cc48783d19a81c3a1a9448caf847f (diff)
downloadruby-b309a3698de74e3cf97b5c3d9393c9d3e735f469.tar.gz
* gc.c (before_gc_sweep): noinline can also avoid the segv instead of
-O0 of r41084. this way is expected less slow. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--gc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 702bc23289..a3fc2a7749 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jun 7 13:22:43 2013 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * gc.c (before_gc_sweep): noinline can also avoid the segv instead of
+ -O0 of r41084. this way is expected less slow.
+
Fri Jun 7 11:45:42 2013 Kenta Murata <mrkn@cookpad.com>
* rational.c (numeric_quo): move num_quo in numeric.c to numeric_quo
diff --git a/gc.c b/gc.c
index f97a74e2dc..eb37abd82b 100644
--- a/gc.c
+++ b/gc.c
@@ -2288,7 +2288,7 @@ ready_to_gc(rb_objspace_t *objspace)
}
#if defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 4
-__attribute__((optimize("O0")))
+__attribute__((noinline))
#endif
static void
before_gc_sweep(rb_objspace_t *objspace)