diff options
author | Björn Gustavsson <[email protected]> | 2010-09-21 08:46:50 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-07-06 14:33:30 +0200 |
commit | 87a7b7f382650519bc1b021a2bf44093658982bc (patch) | |
tree | 53c1c2d1f89dd1ee18568e231a6c8d4868d97539 /lib/hipe | |
parent | 47dec87a8b9c3a29a6ae48a7712aef66275e546a (diff) | |
download | otp-87a7b7f382650519bc1b021a2bf44093658982bc.tar.gz otp-87a7b7f382650519bc1b021a2bf44093658982bc.tar.bz2 otp-87a7b7f382650519bc1b021a2bf44093658982bc.zip |
Remove deprecated concat_binary/1
concat_binary/1 was deprecated in R13B04, but already in
the R10B-2 release, the documentation recommends using
list_to_binary/1 instead.
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index f1be658054..64a695129b 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -675,8 +675,6 @@ type(erlang, cancel_timer, 1, Xs) -> type(erlang, check_process_code, 2, Xs) -> strict(arg_types(erlang, check_process_code, 2), Xs, fun (_) -> t_boolean() end); -type(erlang, concat_binary, 1, Xs) -> - strict(arg_types(erlang, concat_binary, 1), Xs, fun (_) -> t_binary() end); type(erlang, crc32, 1, Xs) -> strict(arg_types(erlang, crc32, 1), Xs, fun (_) -> t_crc32() end); type(erlang, crc32, 2, Xs) -> @@ -3397,8 +3395,6 @@ arg_types(erlang, cancel_timer, 1) -> [t_reference()]; arg_types(erlang, check_process_code, 2) -> [t_pid(), t_atom()]; -arg_types(erlang, concat_binary, 1) -> - [t_list(t_binary())]; arg_types(erlang, crc32, 1) -> [t_iodata()]; arg_types(erlang, crc32, 2) -> |