mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-26 20:32:20 +02:00
* msdos: By default external routine names with the pascal calling convention must be all upper case. This is TP and TASM compatible.
git-svn-id: trunk@46432 -
This commit is contained in:
parent
631ec77157
commit
9d3b105fab
@ -3178,6 +3178,9 @@ const
|
|||||||
result:=target_info.Cprefix+tprocdef(pd).procsym.realname
|
result:=target_info.Cprefix+tprocdef(pd).procsym.realname
|
||||||
else
|
else
|
||||||
result:=pd.procsym.realname;
|
result:=pd.procsym.realname;
|
||||||
|
if (target_info.system=system_i8086_msdos) and
|
||||||
|
(pd.proccalloption=pocall_pascal) then
|
||||||
|
result:=UpCase(result);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user