diff options
author | Fredrik Gustafsson <[email protected]> | 2013-03-27 12:17:51 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-03-27 12:17:51 +0100 |
commit | def9f08b475c24f65980b0b1efcf39f7ed7064c9 (patch) | |
tree | 75376f470898d15eb4c38059dbc3a2e6cba1265e /lib/hipe/icode/hipe_icode_callgraph.erl | |
parent | e755c19236d19447efcf1809792e9c69ff970de0 (diff) | |
parent | 3d98819b66ed080bea199a5f33984d3213ef97f2 (diff) | |
download | otp-def9f08b475c24f65980b0b1efcf39f7ed7064c9.tar.gz otp-def9f08b475c24f65980b0b1efcf39f7ed7064c9.tar.bz2 otp-def9f08b475c24f65980b0b1efcf39f7ed7064c9.zip |
Merge branch 'ks/hipe-cleanup/OTP-10985' into maint
* ks/hipe-cleanup/OTP-10985:
Fix handling of bs_match_string translation
Take out 'constant' type test and unnecessary type declaration
Take out 'constant' type test from left over comments
Enable more warnings
Use remote type instead of relying on hipe_icode.hrl
Add type info for hipe_bifs:nstack_used_size/0
Use correct type name
Update a comment
Diffstat (limited to 'lib/hipe/icode/hipe_icode_callgraph.erl')
-rw-r--r-- | lib/hipe/icode/hipe_icode_callgraph.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/icode/hipe_icode_callgraph.erl b/lib/hipe/icode/hipe_icode_callgraph.erl index ae4b5785c4..6d004823e2 100644 --- a/lib/hipe/icode/hipe_icode_callgraph.erl +++ b/lib/hipe/icode/hipe_icode_callgraph.erl @@ -102,7 +102,7 @@ pp(#icode_callgraph{ordered_sccs = SCCs}) -> %%------------------------------------------------------------------------ %% Get the modules called from this module --spec get_called_modules([mfa_icode()]) -> ordset(atom()). +-spec get_called_modules([mfa_icode()]) -> ordsets:ordset(atom()). get_called_modules(List) -> get_remote_calls(List, []). |