* Tvarsym.highvarsym commented out (unused by compiler, purpose unknown)

This commit is contained in:
daniel 2004-02-04 22:54:57 +00:00
parent d735071838
commit 63f2dfc2dd
2 changed files with 12 additions and 6 deletions

View File

@ -292,7 +292,7 @@ implementation
hvs:=tvarsym.create('$high'+tvarsym(currpara.parasym).name,vs_const,s32inttype);
include(hvs.varoptions,vo_is_high_value);
tvarsym(currpara.parasym).owner.insert(hvs);
tvarsym(currpara.parasym).highvarsym:=hvs;
{ tvarsym(currpara.parasym).highvarsym:=hvs;}
end
else
hvs:=nil;
@ -2140,7 +2140,10 @@ const
end.
{
$Log$
Revision 1.159 2004-02-04 22:15:15 daniel
Revision 1.160 2004-02-04 22:54:57 daniel
* Tvarsym.highvarsym commented out (unused by compiler, purpose unknown)
Revision 1.159 2004/02/04 22:15:15 daniel
* Rtti generation moved to ncgutil
* Assmtai usage of symsym removed
* operator overloading cleanup up

View File

@ -154,7 +154,7 @@ interface
end;
tvarsym = class(tstoredsym)
highvarsym : tvarsym;
{ highvarsym : tvarsym;}
defaultconstsym : tsym;
varoptions : tvaroptions;
varspez : tvarspez; { sets the type of access }
@ -1439,7 +1439,7 @@ implementation
varspez:=vsp;
fieldoffset:=0;
fillchar(localloc,sizeof(localloc),0);
highvarsym:=nil;
{ highvarsym:=nil;}
defaultconstsym:=nil;
refs:=0;
varstate:=vs_declared;
@ -1475,7 +1475,7 @@ implementation
varstate:=vs_used;
varspez:=tvarspez(ppufile.getbyte);
fieldoffset:=ppufile.getlongint;
highvarsym:=nil;
{ highvarsym:=nil;}
defaultconstsym:=nil;
ppufile.gettype(_vartype);
ppufile.getsmallset(varoptions);
@ -2374,7 +2374,10 @@ implementation
end.
{
$Log$
Revision 1.152 2004-02-04 22:15:15 daniel
Revision 1.153 2004-02-04 22:54:57 daniel
* Tvarsym.highvarsym commented out (unused by compiler, purpose unknown)
Revision 1.152 2004/02/04 22:15:15 daniel
* Rtti generation moved to ncgutil
* Assmtai usage of symsym removed
* operator overloading cleanup up