diff options
author | Björn Gustavsson <[email protected]> | 2017-05-11 14:00:28 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-05-11 14:00:28 +0200 |
commit | 9fcbf829e38f4e63bc238d56d4debe38fde7b051 (patch) | |
tree | 6847568b91d2fcbc9602ed8a7684485983aa02fc /lib/compiler/src/erl_bifs.erl | |
parent | c3a81d86c0ad0245cd47ff17aee70dc816c07e39 (diff) | |
parent | 4f2f8a0ab7a8da99968502da6a7389aa1123c086 (diff) | |
download | otp-9fcbf829e38f4e63bc238d56d4debe38fde7b051.tar.gz otp-9fcbf829e38f4e63bc238d56d4debe38fde7b051.tar.bz2 otp-9fcbf829e38f4e63bc238d56d4debe38fde7b051.zip |
Merge branch 'bjorn/compiler/cover'
* bjorn/compiler/cover:
compiler.cover: Remove deleted module sys_pre_expand
Cover the first clause of v3_core:bin_expand_string/4
compile_SUITE: Test the r16, r17, r18, r19 options
erl_bifs: Remove pure BIFs serving no useful purpose
erl_bifs: Remove erlang:hash/2 from list of pure functions
Diffstat (limited to 'lib/compiler/src/erl_bifs.erl')
-rw-r--r-- | lib/compiler/src/erl_bifs.erl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/compiler/src/erl_bifs.erl b/lib/compiler/src/erl_bifs.erl index 35a12d7010..bafa9d75b7 100644 --- a/lib/compiler/src/erl_bifs.erl +++ b/lib/compiler/src/erl_bifs.erl @@ -81,7 +81,6 @@ is_pure(erlang, float, 1) -> true; is_pure(erlang, float_to_list, 1) -> true; is_pure(erlang, float_to_binary, 1) -> true; is_pure(erlang, floor, 1) -> true; -is_pure(erlang, hash, 2) -> false; is_pure(erlang, hd, 1) -> true; is_pure(erlang, integer_to_binary, 1) -> true; is_pure(erlang, integer_to_list, 1) -> true; @@ -108,14 +107,11 @@ is_pure(erlang, list_to_binary, 1) -> true; is_pure(erlang, list_to_float, 1) -> true; is_pure(erlang, list_to_integer, 1) -> true; is_pure(erlang, list_to_pid, 1) -> true; -is_pure(erlang, list_to_port, 1) -> true; -is_pure(erlang, list_to_ref, 1) -> true; is_pure(erlang, list_to_tuple, 1) -> true; is_pure(erlang, max, 2) -> true; is_pure(erlang, min, 2) -> true; is_pure(erlang, phash, 2) -> false; is_pure(erlang, pid_to_list, 1) -> true; -is_pure(erlang, port_to_list, 1) -> true; is_pure(erlang, round, 1) -> true; is_pure(erlang, setelement, 3) -> true; is_pure(erlang, size, 1) -> true; |