diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 11:22:08 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 11:22:08 +0000 |
commit | cd4df20b13915dab87ce48c2abb5190cf158f835 (patch) | |
tree | ff6996aa83c8a37973e5a0a6edb02bc268df9a8c /bignum.c | |
parent | 47bfeccda4a9b7cc29cb082a6dbe93833cc4aa53 (diff) | |
download | ruby-cd4df20b13915dab87ce48c2abb5190cf158f835.tar.gz ruby-cd4df20b13915dab87ce48c2abb5190cf158f835.tar.xz ruby-cd4df20b13915dab87ce48c2abb5190cf158f835.zip |
* bignum.c (rb_big_mul0): remove unused variable.
* bignum.c (bigdivrem): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14432 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r-- | bignum.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1511,7 +1511,6 @@ rb_big_mul0(VALUE x, VALUE y) bms.stop = Qfalse; if (RBIGNUM_LEN(x) + RBIGNUM_LEN(y) > 10000) { - VALUE stop = Qfalse; z = rb_thread_blocking_region(bigmul1, &bms, rb_big_stop, &bms.stop); } else { @@ -1682,7 +1681,6 @@ bigdivrem(VALUE x, VALUE y, VALUE *divp, VALUE *modp) bds.modp = modp; bds.stop = Qfalse; if (RBIGNUM_LEN(x) > 10000 || RBIGNUM_LEN(y) > 10000) { - VALUE stop = Qfalse; z = rb_thread_blocking_region(bigdivrem1, &bds, rb_big_stop, &bds.stop); } else { |