summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
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 792f70b7b4..7b0a05d617 100644
--- a/gc.c
+++ b/gc.c
@@ -1261,7 +1261,7 @@ rb_gc()
ucontext_t ctx;
VALUE *top, *bot;
getcontext(&ctx);
- rb_gc_mark_locations((VALUE*)&ctx.uc_mcontext,
+ mark_locations_array((VALUE*)&ctx.uc_mcontext,
((size_t)(sizeof(VALUE)-1 + sizeof ctx.uc_mcontext)/sizeof(VALUE)));
bot = (VALUE*)__libc_ia64_register_backing_store_base;
top = (VALUE*)ctx.uc_mcontext.sc_ar_bsp;