* properly unlink unused type symbols from their defs to avoid

internal errors when generating debug info, resolves #40886
This commit is contained in:
florian 2024-09-20 22:48:22 +02:00
parent 33a389dfb7
commit 44d9234f38
3 changed files with 25 additions and 0 deletions

View File

@ -1342,6 +1342,17 @@ uses
end;
end;
end;
{ unlink unused defs }
if not(result) and assigned(callerparams) then
begin
for k:=0 to callerparams.count-1 do
begin
if tsym(callerparams[k]).typ=typesym then
ttypesym(callerparams[k]).typedef.typesym:=nil;
end;
end;
callerparams.free;
end;

View File

@ -415,6 +415,7 @@ implementation
result:=result+GetTypeName;
end;
function tdef.fulltypename:string;
begin
result:=fullownerhierarchyname(false);

13
tests/webtbs/tw40886.pp Normal file
View File

@ -0,0 +1,13 @@
{ %opt=-gl }
program test;
{$modeswitch implicitfunctionspecialization}
generic procedure FillChar<T>(var x; count: SizeInt; value: Byte);
begin
end;
var v: array [0..0] of Byte;
begin
FillChar(v, 0, 0);
end.