* fixed darwin compilation

git-svn-id: trunk@6310 -
This commit is contained in:
Jonas Maebe 2007-02-02 22:48:02 +00:00
parent 01b23ca896
commit 5ea26c5f5f

View File

@ -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;