mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-05 15:51:03 +01:00
* made IA32 the default
This commit is contained in:
parent
3600b51d32
commit
6780d226ce
@ -793,8 +793,8 @@ asm
|
||||
end; {Backwards_SSE}
|
||||
|
||||
const
|
||||
fastmoveproc_forward : pointer = @Forwards_SSE_3;
|
||||
fastmoveproc_backward : pointer = @Backwards_SSE_3;
|
||||
fastmoveproc_forward : pointer = @Forwards_IA32_3;
|
||||
fastmoveproc_backward : pointer = @Backwards_IA32_3;
|
||||
|
||||
procedure Move(const source;var dest;count:SizeInt);[public, alias: 'FPC_MOVE'];assembler;nostackframe;
|
||||
asm
|
||||
@ -836,7 +836,7 @@ procedure setup_fastmove;{$ifdef SYSTEMINLINE}inline;{$endif}
|
||||
fastmoveproc_forward:=@Forwards_SSE_3;
|
||||
fastmoveproc_backward:=@Backwards_SSE_3;
|
||||
end
|
||||
else if has_mmx_support then
|
||||
else if has_mmx_support then
|
||||
begin
|
||||
fastmoveproc_forward:=@Forwards_MMX_3;
|
||||
fastmoveproc_backward:=@Backwards_MMX_3;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user