* throw an error if varargs is used without appropriate calling conventions, resolves #40342

This commit is contained in:
florian 2024-05-14 22:43:40 +02:00
parent d809b4ba98
commit 4a4eadc60e
2 changed files with 17 additions and 1 deletions

View File

@ -649,7 +649,7 @@ implementation
{ both must be defined now }
if not((po_external in pd.procoptions) or
(pd.typ=procvardef)) or
not(pd.proccalloption in (cdecl_pocalls + [pocall_stdcall])) then
not(pd.proccalloption in cstylearrayofconst) then
Message(parser_e_varargs_need_cdecl_and_external);
end;
end;

16
tests/tbf/tw40342.pp Normal file
View File

@ -0,0 +1,16 @@
{ %fail }
{$mode objfpc}
program test;
type
TMyRecord = record
end;
function printf(format: PChar): Integer; external; varargs;
var
r: TMyRecord;
begin
printf('test', r); // Fatal: Internal error 2004102303
end.