mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:47:58 +02:00
* properly unlink unused type symbols from their defs to avoid
internal errors when generating debug info, resolves #40886
This commit is contained in:
parent
33a389dfb7
commit
44d9234f38
@ -1342,6 +1342,17 @@ uses
|
|||||||
end;
|
end;
|
||||||
end;
|
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;
|
callerparams.free;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -415,6 +415,7 @@ implementation
|
|||||||
result:=result+GetTypeName;
|
result:=result+GetTypeName;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function tdef.fulltypename:string;
|
function tdef.fulltypename:string;
|
||||||
begin
|
begin
|
||||||
result:=fullownerhierarchyname(false);
|
result:=fullownerhierarchyname(false);
|
||||||
|
13
tests/webtbs/tw40886.pp
Normal file
13
tests/webtbs/tw40886.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user