mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 14:09:20 +02:00
* another ARM data alignment issue was fixed.
git-svn-id: trunk@1333 -
This commit is contained in:
parent
66bb1e0a95
commit
a6b84b93e1
@ -649,7 +649,11 @@ begin
|
|||||||
old_display_extra_info_proc:=pp^.extra_info^.displayproc;
|
old_display_extra_info_proc:=pp^.extra_info^.displayproc;
|
||||||
end;
|
end;
|
||||||
{ Do the real ReAllocMem, but alloc also for the info block }
|
{ Do the real ReAllocMem, but alloc also for the info block }
|
||||||
|
{$ifdef cpuarm}
|
||||||
|
allocsize:=(size + 3) and not 3+sizeof(theap_mem_info)+pp^.extra_info_size;
|
||||||
|
{$else cpuarm}
|
||||||
allocsize:=size+sizeof(theap_mem_info)+pp^.extra_info_size;
|
allocsize:=size+sizeof(theap_mem_info)+pp^.extra_info_size;
|
||||||
|
{$endif cpuarm}
|
||||||
if add_tail then
|
if add_tail then
|
||||||
inc(allocsize,sizeof(ptrint));
|
inc(allocsize,sizeof(ptrint));
|
||||||
{ Try to resize the block, if not possible we need to do a
|
{ Try to resize the block, if not possible we need to do a
|
||||||
|
Loading…
Reference in New Issue
Block a user