summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-21 22:52:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-21 22:52:38 +0000
commit51281b961be085be5a29088ada5118699035306b (patch)
treed5adc6176aa167e868d3c6081e794238b98251ac /bignum.c
parent5b950717b7bbcf8fa3b9362060c02badd87d2b5a (diff)
* bignum.c (rb_big_hash): use rb_memhash().
* numeric.c (flo_hash): simplified. klass need not to affect resulting hash value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10992 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/bignum.c b/bignum.c
index e3e8d80d9a..ecf2872f08 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1887,14 +1887,10 @@ rb_big_aref(VALUE x, VALUE y)
static VALUE
rb_big_hash(VALUE x)
{
- long i, len, key;
- BDIGIT *digits;
+ int hash;
- key = 0; digits = BDIGITS(x); len = RBIGNUM(x)->len;
- for (i=0; i<len; i++) {
- key ^= *digits++;
- }
- return LONG2FIX(key);
+ hash = rb_memhash(BDIGITS(x), BITSPERDIG*RBIGNUM(x)->len) ^ RBIGNUM(x)->sign;
+ return INT2FIX(hash);
}
/*