You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no need to do this. The compiler will perform this optimization. You can check it at the breakpoint in the CPU view. But since the code is more convenient for reading and understanding.
Hello,
I've see in fastmm4.pas code a line (12167) like :
procedure AppendMemorySize(ASize: NativeUInt);
begin
if ASize < 10*1024 then….
I Wonder if this could be replcaced by
procedure AppendMemorySize(ASize: NativeUInt);
begin
if ASize < 10240 then…
That should be more faster… If it's correct can we Apply this to other case like this one… ?
(ex : 10x1024x1024 replaced by 10485760...)
With best regards,
MLCVISTA
The text was updated successfully, but these errors were encountered: