summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-11 02:38:20 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-11 02:38:20 +0000
commit165e10b6cf73f723c2f6af676b70aeb2d8cf85c9 (patch)
treedff6ad96b07191a39d8aca63b1e72b3aefab965b /hash.c
parentd93dcddd87b6cd99cfbbd1cd0b75613196eef615 (diff)
compile.c: rehash cdhash
* compile.c (iseq_compile_each, ibf_load_object_hash): rehash case-dispatch hash to reduce collisions. http://d.hatena.ne.jp/ku-ma-me/20151210 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 1fd9d12e15..52479c0ac2 100644
--- a/hash.c
+++ b/hash.c
@@ -734,7 +734,7 @@ rb_hash_rehash_i(VALUE key, VALUE value, VALUE arg)
* h[a] #=> 100
*/
-static VALUE
+VALUE
rb_hash_rehash(VALUE hash)
{
VALUE tmp;