diff options
author | Hans Bolinder <[email protected]> | 2015-04-07 12:54:42 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-04-07 12:54:42 +0200 |
commit | 7d46bab86ad0d71d79363815d7b7d7a8c1660d5a (patch) | |
tree | 2f688c6659e4ad9bbd75d0cc5ad7ce90adfce0f1 /lib/dialyzer/src/dialyzer_cl.erl | |
parent | cc722af4d62d749d2a75155e91a2a1562aeb2a5a (diff) | |
parent | 3382224b67fe4f1aa8018a97cd159ad5089ba555 (diff) | |
download | otp-7d46bab86ad0d71d79363815d7b7d7a8c1660d5a.tar.gz otp-7d46bab86ad0d71d79363815d7b7d7a8c1660d5a.tar.bz2 otp-7d46bab86ad0d71d79363815d7b7d7a8c1660d5a.zip |
Merge branch 'hb/dialyzer/fix_plt_bug/OTP-12637'
* hb/dialyzer/fix_plt_bug/OTP-12637:
dialyzer: Move a testcase to plt_SUITE
dialyzer: Update the PLT properly when a module is changed
Diffstat (limited to 'lib/dialyzer/src/dialyzer_cl.erl')
-rw-r--r-- | lib/dialyzer/src/dialyzer_cl.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dialyzer/src/dialyzer_cl.erl b/lib/dialyzer/src/dialyzer_cl.erl index debb78bd0b..fe4ec41359 100644 --- a/lib/dialyzer/src/dialyzer_cl.erl +++ b/lib/dialyzer/src/dialyzer_cl.erl @@ -2,7 +2,7 @@ %%------------------------------------------------------------------- %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2006-2014. All Rights Reserved. +%% Copyright Ericsson AB 2006-2015. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -469,7 +469,7 @@ expand_dependent_modules(Md5, DiffMd5, ModDeps) -> Mod = list_to_atom(filename:basename(File, ".beam")), sets:is_element(Mod, AnalyzeMods) end, - {[F || {F, _} <- Md5, FilterFun(F)], RemovedMods, NewModDeps}. + {[F || {F, _} <- Md5, FilterFun(F)], BigSet, NewModDeps}. expand_dependent_modules_1([Mod|Mods], Included, ModDeps) -> case dict:find(Mod, ModDeps) of |