mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 03:51:39 +02:00
* mark variables used in set creation
git-svn-id: trunk@706 -
This commit is contained in:
parent
20e1ac4640
commit
376865d041
@ -366,8 +366,12 @@ implementation
|
|||||||
p3:=nil;
|
p3:=nil;
|
||||||
end;
|
end;
|
||||||
resulttypepass(p2);
|
resulttypepass(p2);
|
||||||
|
set_varstate(p2,vs_used,[vsf_must_be_valid]);
|
||||||
if assigned(p3) then
|
if assigned(p3) then
|
||||||
resulttypepass(p3);
|
begin
|
||||||
|
resulttypepass(p3);
|
||||||
|
set_varstate(p3,vs_used,[vsf_must_be_valid]);
|
||||||
|
end;
|
||||||
if codegenerror then
|
if codegenerror then
|
||||||
break;
|
break;
|
||||||
case p2.resulttype.def.deftype of
|
case p2.resulttype.def.deftype of
|
||||||
|
Loading…
Reference in New Issue
Block a user