summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-29 15:49:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-29 15:49:07 +0000
commit0d6c59105543ed054afda3de2dc91e4d34858c83 (patch)
tree8afb8ecdf5deca73587d31d92b50d7db0d6edbff /bignum.c
parent7c99a7df8587d1b0683fb216dc3704d66332c957 (diff)
* bignum.c (bigmul1_toom3): remove unused variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index efd4bd3106..b322a659ac 100644
--- a/bignum.c
+++ b/bignum.c
@@ -2279,7 +2279,7 @@ static VALUE bigdivrem(VALUE, VALUE, volatile VALUE*, volatile VALUE*);
static VALUE
bigmul1_toom3(VALUE x, VALUE y)
{
- long i, n, xn, yn, zn;
+ long n, xn, yn, zn;
VALUE x0, x1, x2, y0, y1, y2;
VALUE u0, u1, u2, u3, u4, v1, v2, v3;
VALUE z0, z1, z2, z3, z4, z, t;