diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-03-03 12:46:05 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-03-12 19:15:31 +0100 |
commit | 9794b73998690178538a1dfc193565dcd477b4fe (patch) | |
tree | 64a98ff673023c77410fd671639d2bbed7d9176c /erts/emulator/beam/erl_map.h | |
parent | ba117527441b58886a06c0feff40677b9fa48983 (diff) | |
download | otp-9794b73998690178538a1dfc193565dcd477b4fe.tar.gz otp-9794b73998690178538a1dfc193565dcd477b4fe.tar.bz2 otp-9794b73998690178538a1dfc193565dcd477b4fe.zip |
erts: Fix update_map_assoc instruction
Did not build a hashmap once the small limit was exceeded.
Diffstat (limited to 'erts/emulator/beam/erl_map.h')
-rw-r--r-- | erts/emulator/beam/erl_map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_map.h b/erts/emulator/beam/erl_map.h index 3544189936..6a7b29fe86 100644 --- a/erts/emulator/beam/erl_map.h +++ b/erts/emulator/beam/erl_map.h @@ -103,6 +103,7 @@ void hashmap_iterator_init(struct ErtsWStack_* s, Eterm node); Eterm* hashmap_iterator_next(struct ErtsWStack_* s); int hashmap_key_hash_cmp(Eterm* ap, Eterm* bp); Eterm erts_hashmap_from_array(Process *p, Eterm *leafs, Uint n); +Eterm erts_hashmap_from_ks_and_vs(Process *p, Eterm *ks, Eterm *vs, Uint n); const Eterm *erts_hashmap_get(Uint32 hx, Eterm key, Eterm map); #if HALFWORD_HEAP |