diff options
author | Kostis Sagonas <[email protected]> | 2013-03-10 16:10:37 +0100 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2013-03-10 16:10:37 +0100 |
commit | 1fd6ce865507d3645f1db998a125ffb7883bf5fd (patch) | |
tree | e879453cae5aa23f55c01a9f1130f0019c206321 /lib/hipe/icode/hipe_icode_callgraph.erl | |
parent | 1b5fa1c408af3a4b84c02b75013a1aa02ff36509 (diff) | |
download | otp-1fd6ce865507d3645f1db998a125ffb7883bf5fd.tar.gz otp-1fd6ce865507d3645f1db998a125ffb7883bf5fd.tar.bz2 otp-1fd6ce865507d3645f1db998a125ffb7883bf5fd.zip |
Use remote type instead of relying on hipe_icode.hrl
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, []). |