mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 19:49:31 +02:00
* Renamed "fieldoffset" to "iioffset" to avoid confusion with fieldvarsym.fieldoffset
git-svn-id: trunk@6214 -
This commit is contained in:
parent
83f5a5747c
commit
0e6348e7b7
@ -521,7 +521,7 @@ implementation
|
||||
ImplIntf.AddImplProc(implprocdef)
|
||||
end
|
||||
else
|
||||
if ImplIntf.iitype = etStandard then
|
||||
if ImplIntf.itype = etStandard then
|
||||
Message1(sym_e_no_matching_implementation_found,tprocdef(def).fullprocname(false));
|
||||
end;
|
||||
end;
|
||||
@ -1224,7 +1224,7 @@ implementation
|
||||
if AImplIntf.VtblImplIntf.itype = etStandard then
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_aint(AImplIntf.VtblImplIntf.ioffset))
|
||||
else
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_aint(AImplIntf.VtblImplIntf.fieldoffset));
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_aint(AImplIntf.VtblImplIntf.iioffset));
|
||||
{ IIDStr }
|
||||
current_asmdata.getdatalabel(iidlabel);
|
||||
rawdata.concat(cai_align.create(const_align(sizeof(aint))));
|
||||
@ -1235,8 +1235,8 @@ implementation
|
||||
else
|
||||
rawdata.concat(Tai_string.Create(AImplIntf.IntfDef.iidstr^));
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_sym(iidlabel));
|
||||
{ IIType }
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_aint(aint(AImplIntf.iitype)));
|
||||
{ IType }
|
||||
current_asmdata.asmlists[al_globals].concat(Tai_const.Create_aint(aint(AImplIntf.itype)));
|
||||
end;
|
||||
|
||||
|
||||
|
@ -204,7 +204,6 @@ interface
|
||||
VtblImplIntf : TImplementedInterface;
|
||||
NameMappings : TFPHashList;
|
||||
ProcDefs : TFPObjectList;
|
||||
iitype : tinterfaceentrytype;
|
||||
// IIOffset can be merged with IOffset. But then, fpc is not allowed to genrate a vmtentry.
|
||||
// Right now, fpc generate an entry for all implemented interfaces (but it should just for etStandard ones)
|
||||
// - Ivo Steinmann
|
||||
@ -4031,10 +4030,9 @@ implementation
|
||||
intfdef:=aintf;
|
||||
ioffset:=-1;
|
||||
itype:=etStandard;
|
||||
fieldoffset:=-1;
|
||||
iioffset:=-1;
|
||||
NameMappings:=nil;
|
||||
procdefs:=nil;
|
||||
iitype := etStandard;
|
||||
iioffset := 0;
|
||||
end;
|
||||
|
||||
@ -4046,7 +4044,7 @@ implementation
|
||||
intfdefderef:=d;
|
||||
ioffset:=-1;
|
||||
itype:=etStandard;
|
||||
fieldoffset:=-1;
|
||||
iioffset:=-1;
|
||||
NameMappings:=nil;
|
||||
procdefs:=nil;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user