mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:47:52 +02:00
* only use calling conventions supported on all platforms
git-svn-id: trunk@12942 -
This commit is contained in:
parent
4cc2015f8b
commit
0e6f9dc688
@ -5,11 +5,11 @@
|
||||
convention mismatch when parsing the actual definition
|
||||
}
|
||||
|
||||
{$calling register}
|
||||
{$calling cdecl}
|
||||
function test(l1,l2: longint): longint; forward;
|
||||
{$calling stdcall}
|
||||
|
||||
function test(l1,l2: longint): longint; register;
|
||||
function test(l1,l2: longint): longint; cdecl;
|
||||
begin
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user