Avoid warning on non-i386 CPUs

git-svn-id: trunk@19594 -
This commit is contained in:
pierre 2011-11-03 16:38:28 +00:00
parent 0eb0415194
commit c86e36a53b

View File

@ -2658,6 +2658,8 @@ function MaskAllFPUExceptions(control : TFPUState) : TFPUState;
begin
{$ifdef cpui386}
MaskAllFPUExceptions := control or MaskAllExceptions;
{$else}
MaskAllFPUExceptions:=0;
{$endif}
end;