mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:58:06 +02:00
parent
decb6ab3c6
commit
5c4db7dbca
@ -1591,6 +1591,9 @@ implementation
|
||||
{ total element count }
|
||||
tcb.emit_tai(Tai_const.Create_sizeint(asizeint(totalcount)),sizeuinttype);
|
||||
{ last dimension element type }
|
||||
if is_objc_class_or_protocol(curdef.elementdef) then
|
||||
tcb.emit_tai(Tai_const.Create_sym(get_rtti_label(voidpointertype,rt,true)),voidpointertype)
|
||||
else
|
||||
tcb.emit_tai(Tai_const.Create_sym(get_rtti_label(curdef.elementdef,rt,true)),voidpointertype);
|
||||
{ dimension count }
|
||||
tcb.emit_ord_const(dimcount,u8inttype);
|
||||
@ -2635,6 +2638,10 @@ implementation
|
||||
rttidef: tdef;
|
||||
s: TIDString;
|
||||
begin
|
||||
{ Objective-C has its own RTTI system }
|
||||
if is_objc_class_or_protocol(def) then
|
||||
exit;
|
||||
|
||||
{ only write rtti of definitions from the current module }
|
||||
if not findunitsymtable(def.owner).iscurrentunit then
|
||||
exit;
|
||||
|
Loading…
Reference in New Issue
Block a user