mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-23 10:29:23 +02:00
* fixed darwin compilation
git-svn-id: trunk@6310 -
This commit is contained in:
parent
01b23ca896
commit
5ea26c5f5f
@ -94,7 +94,7 @@ function mmx_support : boolean;
|
|||||||
mmx_support:=false;
|
mmx_support:=false;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$ifndef INTERNALMOVEFILLCHAR}
|
{$if not defined(INTERNALMOVEFILLCHAR) and not defined(Darwin)}
|
||||||
{$define USE_FASTMOVE}
|
{$define USE_FASTMOVE}
|
||||||
{$i fastmove.inc}
|
{$i fastmove.inc}
|
||||||
{$endif INTERNALMOVEFILLCHAR}
|
{$endif INTERNALMOVEFILLCHAR}
|
||||||
@ -1235,7 +1235,9 @@ procedure fpc_cpucodeinit;
|
|||||||
has_sse_support:=sse_support;
|
has_sse_support:=sse_support;
|
||||||
has_mmx_support:=mmx_support;
|
has_mmx_support:=mmx_support;
|
||||||
SysResetFPU;
|
SysResetFPU;
|
||||||
|
{$ifndef darwin}
|
||||||
setup_fastmove;
|
setup_fastmove;
|
||||||
|
{$endif}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user