diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-01-12 11:05:15 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-01-12 11:05:15 +0100 |
commit | 13696ffaaf6440c3f1e28f740679d096ddd87c17 (patch) | |
tree | bec6e4559b54cd1747e7514ca643a4d63cd5ea35 /lib/compiler/src/beam_block.erl | |
parent | b8c54891547dbdea1d2aa03973df24e4d9e4e816 (diff) | |
download | otp-13696ffaaf6440c3f1e28f740679d096ddd87c17.tar.gz otp-13696ffaaf6440c3f1e28f740679d096ddd87c17.tar.bz2 otp-13696ffaaf6440c3f1e28f740679d096ddd87c17.zip |
compiler: Rename util function to adhere to name policy
* beam_utils:joineven/1 -> beam_utils:join_even/1
* beam_utils:split_even/1 -> beam_utils:split_even/1
Diffstat (limited to 'lib/compiler/src/beam_block.erl')
-rw-r--r-- | lib/compiler/src/beam_block.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_block.erl b/lib/compiler/src/beam_block.erl index 5626aa34ab..7d65dc983a 100644 --- a/lib/compiler/src/beam_block.erl +++ b/lib/compiler/src/beam_block.erl @@ -155,7 +155,7 @@ collect(remove_message) -> {set,[],[],remove_message}; collect({put_map,F,Op,S,D,R,{list,Puts}}) -> {set,[D],[S|Puts],{alloc,R,{put_map,Op,F}}}; collect({get_map_elements,F,S,{list,Gets}}) -> - {Ss,Ds} = beam_utils:spliteven(Gets), + {Ss,Ds} = beam_utils:split_even(Gets), {set,Ds,[S|Ss],{get_map_elements,F}}; collect({'catch',R,L}) -> {set,[R],[],{'catch',L}}; collect(fclearerror) -> {set,[],[],fclearerror}; |