* 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:
yury 2020-08-14 16:21:12 +00:00
parent 631ec77157
commit 9d3b105fab

View File

@ -3178,6 +3178,9 @@ const
result:=target_info.Cprefix+tprocdef(pd).procsym.realname
else
result:=pd.procsym.realname;
if (target_info.system=system_i8086_msdos) and
(pd.proccalloption=pocall_pascal) then
result:=UpCase(result);
end;
end;
end;