aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 7eda823baf..dbe1a3353b 100644
--- a/bignum.c
+++ b/bignum.c
@@ -4638,8 +4638,6 @@ rb_big_xor(VALUE xx, VALUE yy)
ds2 = BDIGITS(y);
sign = RBIGNUM_SIGN(x);
}
- RBIGNUM_SET_SIGN(x, RBIGNUM_SIGN(x)?1:0);
- RBIGNUM_SET_SIGN(y, RBIGNUM_SIGN(y)?1:0);
z = bignew(l2, !(RBIGNUM_SIGN(x) ^ RBIGNUM_SIGN(y)));
zds = BDIGITS(z);