* fix for #32352: a unit does not need to be re-deref'ed if it just had been recompiled

git-svn-id: trunk@44026 -
This commit is contained in:
florian 2020-01-23 20:56:56 +00:00
parent 8dc8647c7b
commit 90a40ab9ca

View File

@ -2046,7 +2046,9 @@ var
begin
{ When we don't have any data stored yet there
is nothing to resolve }
if interface_compiled then
if interface_compiled and
{ it makes no sense to re-resolve the unit if it is already finally compiled }
not(state=ms_compiled) then
begin
Message1(unit_u_reresolving_unit,modulename^);
tstoredsymtable(globalsymtable).deref(false);