mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 13:28:07 +02:00
* ensure that nothing assembly related is generated for generics when a typed constant (this also includes local variable initializations) are parsed
git-svn-id: trunk@43534 -
This commit is contained in:
parent
04984e9af9
commit
276f5bdef8
@ -123,23 +123,26 @@ implementation
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
if vo_is_public in sym.varoptions then
|
if not parse_generic then
|
||||||
current_module.add_public_asmsym(sym.mangledname,AB_GLOBAL,AT_DATA);
|
begin
|
||||||
|
if vo_is_public in sym.varoptions then
|
||||||
|
current_module.add_public_asmsym(sym.mangledname,AB_GLOBAL,AT_DATA);
|
||||||
|
|
||||||
if not(target_info.system in systems_typed_constants_node_init) then
|
if not(target_info.system in systems_typed_constants_node_init) then
|
||||||
begin
|
begin
|
||||||
{ only now get the final asmlist, because inserting the symbol
|
{ only now get the final asmlist, because inserting the symbol
|
||||||
information depends on potential section information set above }
|
information depends on potential section information set above }
|
||||||
tasmlisttypedconstbuilder(tcbuilder).get_final_asmlists(reslist,datalist);
|
tasmlisttypedconstbuilder(tcbuilder).get_final_asmlists(reslist,datalist);
|
||||||
{ add the parsed value }
|
{ add the parsed value }
|
||||||
list.concatlist(reslist);
|
list.concatlist(reslist);
|
||||||
{ and pointed data, if any }
|
{ and pointed data, if any }
|
||||||
current_asmdata.asmlists[al_const].concatlist(datalist);
|
current_asmdata.asmlists[al_const].concatlist(datalist);
|
||||||
{ the (empty) lists themselves are freed by tcbuilder }
|
{ the (empty) lists themselves are freed by tcbuilder }
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
{ nothing to do }
|
{ nothing to do }
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
tcbuilder.free;
|
tcbuilder.free;
|
||||||
|
Loading…
Reference in New Issue
Block a user