mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-23 15:09:27 +01:00
* Add calling convention in fullprocname when it is specified
This commit is contained in:
parent
4c9c767687
commit
c56c47fbc0
@ -3705,6 +3705,9 @@ implementation
|
|||||||
not(is_void(rettype.def)) then
|
not(is_void(rettype.def)) then
|
||||||
s:=s+':'+rettype.def.gettypename;
|
s:=s+':'+rettype.def.gettypename;
|
||||||
end;
|
end;
|
||||||
|
{ forced calling convention? }
|
||||||
|
if (po_hascallingconvention in procoptions) then
|
||||||
|
s:=s+';'+ProcCallOptionStr[proccalloption];
|
||||||
fullprocname:=s;
|
fullprocname:=s;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -4082,7 +4085,7 @@ implementation
|
|||||||
|
|
||||||
function tprocdef.gettypename : string;
|
function tprocdef.gettypename : string;
|
||||||
begin
|
begin
|
||||||
gettypename := FullProcName(false)+';'+ProcCallOptionStr[proccalloption];
|
gettypename := FullProcName(false);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -5915,7 +5918,10 @@ implementation
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.174 2003-10-07 16:06:30 peter
|
Revision 1.175 2003-10-07 20:43:49 peter
|
||||||
|
* Add calling convention in fullprocname when it is specified
|
||||||
|
|
||||||
|
Revision 1.174 2003/10/07 16:06:30 peter
|
||||||
* tsymlist.def renamed to tsymlist.procdef
|
* tsymlist.def renamed to tsymlist.procdef
|
||||||
* tsymlist.procdef is now only used to store the procdef
|
* tsymlist.procdef is now only used to store the procdef
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user