aboutsummaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-22 08:52:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-22 08:52:11 +0000
commitcf8e8e6aa2b316cc1244bc05e1fbc73b36bb8ba5 (patch)
tree88573f478ccd41c18c42c1b7900c9e02b6400d96 /hash.c
parentcc6e48dde287085880eb37bd3310679daf50f4dc (diff)
downloadruby-cf8e8e6aa2b316cc1244bc05e1fbc73b36bb8ba5.tar.gz
force hash values fixable
* include/ruby/ruby.h (RB_ST2FIX): force fixable on LLP64 environment. * hash.c (any_hash): ditto. [ruby-core:84395] [Bug #14218] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 627f207d8e..1bbb6b1852 100644
--- a/hash.c
+++ b/hash.c
@@ -193,8 +193,16 @@ any_hash(VALUE a, st_index_t (*other_func)(VALUE))
hnum = other_func(a);
}
out:
+#if SIZEOF_LONG < SIZEOF_ST_INDEX_T
+ if (hnum > 0)
+ hnum &= (unsigned long)-1 >> 2;
+ else
+ hnum |= ~((unsigned long)-1 >> 2);
+#else
hnum <<= 1;
- return (long)RSHIFT(hnum, 1);
+ hnum = RSHIFT(hnum, 1);
+#endif
+ return (long)hnum;
}
static st_index_t