From 880d7af47a66f021712eac17adffac2686d08aad 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/trunk@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 5f008544c0..accd14d958 100644 --- a/bignum.c +++ b/bignum.c @@ -1752,15 +1752,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