mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 21:29:43 +02:00
Avoid warning on non-i386 CPUs
git-svn-id: trunk@19594 -
This commit is contained in:
parent
0eb0415194
commit
c86e36a53b
@ -2658,6 +2658,8 @@ function MaskAllFPUExceptions(control : TFPUState) : TFPUState;
|
|||||||
begin
|
begin
|
||||||
{$ifdef cpui386}
|
{$ifdef cpui386}
|
||||||
MaskAllFPUExceptions := control or MaskAllExceptions;
|
MaskAllFPUExceptions := control or MaskAllExceptions;
|
||||||
|
{$else}
|
||||||
|
MaskAllFPUExceptions:=0;
|
||||||
{$endif}
|
{$endif}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user