Changeset 94605 in vbox for trunk/include/iprt/types.h
- Timestamp:
- Apr 14, 2022 1:47:13 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r94556 r94605 1235 1235 # define RTFLOAT80U_IS_NORMAL(a_pr80) \ 1236 1236 (((a_pr80)->s.uMantissa & RT_BIT_64(63)) && (a_pr80)->s.uExponent > 0 && (a_pr80)->s.uExponent < 0x7fff) 1237 /** Invalid 387 (and later) operands: Pseudo-Infinity, Psuedo-NaN, Unnormals. */ 1238 #define RTFLOAT80U_IS_387_INVALID(a_pr80) \ 1239 (!((a_pr80)->s.uMantissa & RT_BIT_64(63)) && (a_pr80)->s.uExponent > 0) 1237 1240 /** @} */ 1238 1241
Note:
See TracChangeset
for help on using the changeset viewer.