mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-25 19:49:07 +02:00
* only write set elementdef information if there is an elementdef
(can be absent for empty sets) git-svn-id: trunk@10600 -
This commit is contained in:
parent
618c2ee4f9
commit
cd28ce9dfc
@ -2763,7 +2763,8 @@ implementation
|
||||
append_entry(DW_TAG_set_type,false,[
|
||||
DW_AT_byte_size,DW_FORM_data2,def.size
|
||||
]);
|
||||
append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef));
|
||||
if assigned(def.elementdef) then
|
||||
append_labelentry_ref(DW_AT_type,def_dwarf_lab(def.elementdef));
|
||||
end
|
||||
else
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user