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