Changeset 94505 in vbox
- Timestamp:
- Apr 6, 2022 8:26:18 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/x86.h
r94440 r94505 3334 3334 /** Rounding control: Towards zero. */ 3335 3335 #define X86_FCW_RC_ZERO UINT16_C(0x0c00) 3336 /** Infinity control mask - obsolete, 8087 & 287 only. */ 3337 #define X86_FCW_IC_MASK UINT16_C(0x1000) 3338 /** Infinity control: Affine - positive infinity is distictly different from 3339 * negative infinity. 3340 * @note 8087, 287 only */ 3341 #define X86_FCW_IC_AFFINE UINT16_C(0x1000) 3342 /** Infinity control: Projective - positive and negative infinity are the 3343 * same (sign ignored). 3344 * @note 8087, 287 only */ 3345 #define X86_FCW_IC_PROJECTIVE UINT16_C(0x0000) 3336 3346 /** Bits which should be zero, apparently. */ 3337 3347 #define X86_FCW_ZERO_MASK UINT16_C(0xf080)
Note:
See TracChangeset
for help on using the changeset viewer.