|
@@ -249,7 +249,7 @@ interface
|
|
end;
|
|
end;
|
|
|
|
|
|
tlocalvarsym = class(tabstractnormalvarsym)
|
|
tlocalvarsym = class(tabstractnormalvarsym)
|
|
- constructor create(const n : string;vsp:tvarspez;def:tdef;vopts:tvaroptions);virtual;
|
|
|
|
|
|
+ constructor create(const n : string;vsp:tvarspez;def:tdef;vopts:tvaroptions;doregister:boolean);virtual;
|
|
constructor ppuload(ppufile:tcompilerppufile);
|
|
constructor ppuload(ppufile:tcompilerppufile);
|
|
{ do not override this routine in platform-specific subclasses,
|
|
{ do not override this routine in platform-specific subclasses,
|
|
override ppuwrite_platform instead }
|
|
override ppuwrite_platform instead }
|
|
@@ -2084,9 +2084,9 @@ implementation
|
|
TLOCALVARSYM
|
|
TLOCALVARSYM
|
|
****************************************************************************}
|
|
****************************************************************************}
|
|
|
|
|
|
- constructor tlocalvarsym.create(const n : string;vsp:tvarspez;def:tdef;vopts:tvaroptions);
|
|
|
|
|
|
+ constructor tlocalvarsym.create(const n : string;vsp:tvarspez;def:tdef;vopts:tvaroptions;doregister:boolean);
|
|
begin
|
|
begin
|
|
- inherited create(localvarsym,n,vsp,def,vopts,true);
|
|
|
|
|
|
+ inherited create(localvarsym,n,vsp,def,vopts,doregister);
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
|