aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2017-04-21 14:54:33 +0200
committerLukas Larsson <[email protected]>2017-04-25 14:17:18 +0200
commiteec41eeed17682a4e1f8ca15d92a2b469f0c39b8 (patch)
treed67679c453a4033959dfc3cd09d71e5c4c6e558b /lib/compiler
parentab048d66c59fa827bf4129fc95bec21488a931a4 (diff)
downloadotp-eec41eeed17682a4e1f8ca15d92a2b469f0c39b8.tar.gz
otp-eec41eeed17682a4e1f8ca15d92a2b469f0c39b8.tar.bz2
otp-eec41eeed17682a4e1f8ca15d92a2b469f0c39b8.zip
erts: Add erlang:list_to_port/1 debug bif
Diffstat (limited to 'lib/compiler')
-rw-r--r--lib/compiler/src/erl_bifs.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/src/erl_bifs.erl b/lib/compiler/src/erl_bifs.erl
index 2eff9b4efb..b1f1db6fa3 100644
--- a/lib/compiler/src/erl_bifs.erl
+++ b/lib/compiler/src/erl_bifs.erl
@@ -108,6 +108,7 @@ 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;