VirtualBox

Changeset 94505 in vbox


Ignore:
Timestamp:
Apr 6, 2022 8:26:18 PM (3 years ago)
Author:
vboxsync
Message:

iprt/x86.h: Define infinity control bit from 287 and 8087. bugref:9898

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/x86.h

    r94440 r94505  
    33343334/** Rounding control: Towards zero. */
    33353335#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)
    33363346/** Bits which should be zero, apparently. */
    33373347#define X86_FCW_ZERO_MASK   UINT16_C(0xf080)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette