diff options
author | Björn Gustavsson <[email protected]> | 2010-08-14 12:04:51 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-08-17 11:01:26 +0200 |
commit | 1abdce9f382edd044142fe2a9b2a2dd02ff85225 (patch) | |
tree | 8e281fd04b7069a937e7409eac50cb409f124190 /lib/hipe | |
parent | 1d77bf934c95ee9e1bad65946d1a8c4749bb72db (diff) | |
download | otp-1abdce9f382edd044142fe2a9b2a2dd02ff85225.tar.gz otp-1abdce9f382edd044142fe2a9b2a2dd02ff85225.tar.bz2 otp-1abdce9f382edd044142fe2a9b2a2dd02ff85225.zip |
erts: Remove broken elib_malloc
elib_malloc is an alternate memory allocator that
is no longer possible to build.
Diffstat (limited to 'lib/hipe')
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index 1f0247a040..6eeeab3610 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -1638,7 +1638,6 @@ type(erlang, system_info, 1, Xs) -> t_non_neg_integer()])])); ['allocator'] -> t_tuple([t_sup([t_atom('undefined'), - t_atom('elib_malloc'), t_atom('glibc')]), t_list(t_integer()), t_list(t_atom()), @@ -1659,9 +1658,8 @@ type(erlang, system_info, 1, Xs) -> t_binary(); ['dist_ctrl'] -> t_list(t_tuple([t_atom(), t_sup([t_pid(), t_port])])); - ['elib_malloc'] -> - t_sup([t_atom('false'), - t_list(t_tuple([t_atom(), t_any()]))]); + %% elib_malloc is intentionally not included, + %% because it scheduled for removal in R15. ['endian'] -> t_endian(); ['fullsweep_after'] -> |