From 01e181146a3a1b0f0dcf6bf5cf59741b3d2e1566 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 3 Sep 2004 09:00:52 +0000 Subject: * struct.c (make_struct): remove redefining constant when conflict. [ruby-dev:24210] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index d674e68298..06228416bf 100644 --- a/bignum.c +++ b/bignum.c @@ -1736,15 +1736,17 @@ rb_big_or(xx, yy) */ VALUE -rb_big_xor(x, y) - VALUE x, y; +rb_big_xor(xx, yy) + VALUE xx, yy; { + volatile VALUE x, y; VALUE z; BDIGIT *ds1, *ds2, *zds; long i, l1, l2; char sign; - y = rb_to_int(y); + x = xx; + y = rb_to_int(yy); if (FIXNUM_P(y)) { y = rb_int2big(FIX2LONG(y)); } -- cgit v1.2.3