mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 13:39:36 +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
|
||||
else
|
||||
result:=pd.procsym.realname;
|
||||
if (target_info.system=system_i8086_msdos) and
|
||||
(pd.proccalloption=pocall_pascal) then
|
||||
result:=UpCase(result);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user