summaryrefslogtreecommitdiff
path: root/gc.c
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 /gc.c
parent83db393e489cc48783d19a81c3a1a9448caf847f (diff)
* 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
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
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)