mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:58:20 +02:00
* improve complexity calculation for tempref nodes
This commit is contained in:
parent
7cb2e5a180
commit
d87ba06608
@ -730,10 +730,16 @@ implementation
|
|||||||
result:=2;
|
result:=2;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
|
temprefn:
|
||||||
|
begin
|
||||||
|
if (ttemprefnode(p).tempinfo^.typedef.needs_inittable) or
|
||||||
|
not(ti_may_be_in_reg in ttemprefnode(p).tempflags) then
|
||||||
|
result := 1;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
rttin,
|
rttin,
|
||||||
setconstn,
|
setconstn,
|
||||||
stringconstn,
|
stringconstn,
|
||||||
temprefn,
|
|
||||||
loadvmtaddrn,
|
loadvmtaddrn,
|
||||||
{ main reason for the next one: we can't take the address of }
|
{ main reason for the next one: we can't take the address of }
|
||||||
{ loadparentfpnode, so replacing it by a temp which is the }
|
{ loadparentfpnode, so replacing it by a temp which is the }
|
||||||
|
Loading…
Reference in New Issue
Block a user