From e83ff2e682e707dc4dc49a2162f8fe21102a64fd Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 16 Dec 2005 18:59:31 +0000 Subject: [PATCH] * bignum.c (rb_big_rshift): fix a GC problem on IA64 with gcc 4.0.3 20051216 (prerelease). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9705 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ bignum.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c1a1ef338a..628461ac2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Dec 17 03:57:01 2005 Tanaka Akira + + * bignum.c (rb_big_rshift): fix a GC problem on + IA64 with gcc 4.0.3 20051216 (prerelease). + Sat Dec 17 03:30:23 2005 Tanaka Akira * eval.c (bmcall): fix a GC problem by tail call on diff --git a/bignum.c b/bignum.c index 536779bb4a..425676d32c 100644 --- a/bignum.c +++ b/bignum.c @@ -1855,6 +1855,7 @@ rb_big_rshift(x, y) VALUE z; BDIGIT_DBL num = 0; long i, j; + volatile VALUE save_x; if (shift < 0) return rb_big_lshift(x, INT2FIX(-shift)); @@ -1865,7 +1866,7 @@ rb_big_rshift(x, y) return INT2FIX(-1); } if (!RBIGNUM(x)->sign) { - x = rb_big_clone(x); + save_x = x = rb_big_clone(x); get2comp(x); } xds = BDIGITS(x);