diff options
author | Sverker Eriksson <[email protected]> | 2016-10-17 11:32:38 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-17 11:32:38 +0200 |
commit | 2b2de6173d4ba5506ae9b1692a19e01cf0d299c8 (patch) | |
tree | 1d2562b2781c281254b63820351b93e906ca2337 /lib/hipe/cerl | |
parent | 06c111265748b3e6eddc8252af055449d8cb83f4 (diff) | |
download | otp-2b2de6173d4ba5506ae9b1692a19e01cf0d299c8.tar.gz otp-2b2de6173d4ba5506ae9b1692a19e01cf0d299c8.tar.bz2 otp-2b2de6173d4ba5506ae9b1692a19e01cf0d299c8.zip |
kernel,hipe: Fix dialyzer warnings
Diffstat (limited to 'lib/hipe/cerl')
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index 42a038f2d1..ae9650ba7d 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -2463,7 +2463,6 @@ arg_types(hipe_bifs, add_ref, 2) -> t_integer(), t_sup(t_atom('call'), t_atom('load_mfa')), t_trampoline(), - t_atom(), t_binary()])]; arg_types(hipe_bifs, alloc_data, 3) -> [t_integer(), t_integer(), t_binary()]; @@ -2504,7 +2503,7 @@ arg_types(hipe_bifs, check_crc, 1) -> arg_types(hipe_bifs, enter_code, 3) -> [t_binary(), t_sup(t_nil(), t_tuple()), t_binary()]; arg_types(hipe_bifs, enter_sdesc, 2) -> - [t_tuple([t_integer(), t_integer(), t_integer(), t_integer(), t_integer(), t_mfa(), t_atom()]), + [t_tuple([t_integer(), t_integer(), t_integer(), t_integer(), t_integer(), t_mfa()]), t_binary()]; arg_types(hipe_bifs, find_na_or_make_stub, 1) -> [t_mfa()]; |