mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 02:38:31 +02:00
+ completed SSE exception masks
This commit is contained in:
parent
602026d89d
commit
992876d041
@ -330,6 +330,9 @@ procedure inclocked(var l : int64);assembler;
|
||||
const
|
||||
fpucw : word = $1332;
|
||||
|
||||
MM_MaskInvalidOp = %0000000010000000;
|
||||
MM_MaskDenorm = %0000000100000000;
|
||||
MM_MaskDivZero = %0000001000000000;
|
||||
MM_MaskOverflow = %0000010000000000;
|
||||
MM_MaskUnderflow = %0000100000000000;
|
||||
MM_MaskPrecision = %0001000000000000;
|
||||
@ -358,7 +361,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.16 2004-12-25 11:50:46 florian
|
||||
Revision 1.17 2005-02-05 16:19:44 florian
|
||||
+ completed SSE exception masks
|
||||
|
||||
Revision 1.16 2004/12/25 11:50:46 florian
|
||||
* sse instructions should mask overflow by default
|
||||
|
||||
Revision 1.15 2004/11/02 15:26:21 florian
|
||||
@ -405,4 +411,4 @@ end;
|
||||
|
||||
Revision 1.1 2003/01/06 19:40:18 florian
|
||||
+ initial revision
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user