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_split.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_split.erl')
-rw-r--r-- | lib/compiler/src/beam_split.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/beam_split.erl b/lib/compiler/src/beam_split.erl index ff4b98aff6..0c62b0bf3d 100644 --- a/lib/compiler/src/beam_split.erl +++ b/lib/compiler/src/beam_split.erl @@ -54,7 +54,7 @@ split_block([{set,[D],[S|Puts],{alloc,R,{put_map,Op,{f,Lbl}=Fail}}}|Is], split_block(Is, [], [{put_map,Fail,Op,S,D,R,{list,Puts}}| make_block(Bl, Acc)]); split_block([{set,Ds,[S|Ss],{get_map_elements,Fail}}|Is], Bl, Acc) -> - Gets = beam_utils:joineven(Ss,Ds), + Gets = beam_utils:join_even(Ss,Ds), split_block(Is, [], [{get_map_elements,Fail,S,{list,Gets}}|make_block(Bl, Acc)]); split_block([{set,[R],[],{'catch',L}}|Is], Bl, Acc) -> split_block(Is, [], [{'catch',R,L}|make_block(Bl, Acc)]); |