diff options
author | Sverker Eriksson <[email protected]> | 2012-08-27 11:57:38 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-08-27 11:59:55 +0200 |
commit | 16e18097c0a876fdc4714086b6715359f8ac8476 (patch) | |
tree | 85706a13f10c20263423f6d7f4a4e3ee8adb03b8 | |
parent | 618e0f37c9dda5bc26900692ed0cc41031be9e76 (diff) | |
download | otp-16e18097c0a876fdc4714086b6715359f8ac8476.tar.gz otp-16e18097c0a876fdc4714086b6715359f8ac8476.tar.bz2 otp-16e18097c0a876fdc4714086b6715359f8ac8476.zip |
Fix dialyzer warning for hipe_bifs:remove_refs_from(all)
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index 1ef73da1be..17b56a1243 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -4267,7 +4267,7 @@ arg_types(hipe_bifs, ref_get, 1) -> arg_types(hipe_bifs, ref_set, 2) -> [t_hiperef(), t_immediate()]; arg_types(hipe_bifs, remove_refs_from, 1) -> - [t_mfa()]; + [t_sup([t_mfa(), t_atom('all')])]; arg_types(hipe_bifs, set_funinfo_native_address, 3) -> arg_types(hipe_bifs, set_native_address, 3); arg_types(hipe_bifs, set_native_address, 3) -> |