mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 17:10:28 +02:00
Handle unaligned copy in TCGSparcGen.g_concatcopy method
This commit is contained in:
parent
438b4ffb4d
commit
20d0fab8e9
@ -1155,6 +1155,9 @@ implementation
|
||||
{ anybody wants to determine a good value here :)? }
|
||||
if len>100 then
|
||||
g_concatcopy_move(list,source,dest,len)
|
||||
else if ((source.alignment>0) and (source.alignment<4)) or
|
||||
((dest.alignment>0) and (dest.alignment<4)) then
|
||||
g_concatcopy_unaligned(list,source,dest,len)
|
||||
else
|
||||
begin
|
||||
count:=len div 4;
|
||||
|
Loading…
Reference in New Issue
Block a user