mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 13:29:21 +02:00
* prevent previously freed temp blocks from getting lost occasionally (can
significantly reduce the stack frame size, more than 3 times in one place in the compiler) git-svn-id: trunk@24025 -
This commit is contained in:
parent
5104869d92
commit
4992fd1c88
@ -484,7 +484,10 @@ implementation
|
||||
hp:=hprev;
|
||||
end
|
||||
else
|
||||
hprevfree^.nextfree:=hp;
|
||||
begin
|
||||
hp^.nextfree:=hprevfree^.nextfree;
|
||||
hprevfree^.nextfree:=hp;
|
||||
end;
|
||||
end
|
||||
else
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user