Changeset 94263 in vbox
- Timestamp:
- Mar 16, 2022 2:26:33 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/include/iprt/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/types.h
r94261 r94263 1030 1030 #ifdef RT_BIG_ENDIAN 1031 1031 # define RTFLOAT64U_INIT(a_fSign, a_uFraction, a_uExponent) \ 1032 { { (a_fSign), (a_uExponent), (uint32_t)((a_uFraction) >> 32), (uint32_t)( a_uFraction) } }1032 { { (a_fSign), (a_uExponent), (uint32_t)((a_uFraction) >> 32), (uint32_t)((a_uFraction) & UINT32_MAX) } } 1033 1033 #else 1034 1034 # define RTFLOAT64U_INIT(a_fSign, a_uFraction, a_uExponent) \ 1035 { { (uint32_t)( a_uFraction), (uint32_t)((a_uFraction) >> 32), (a_uExponent), (a_fSign) } }1035 { { (uint32_t)((a_uFraction) & UINT32_MAX), (uint32_t)((a_uFraction) >> 32), (a_uExponent), (a_fSign) } } 1036 1036 #endif 1037 1037 #define RTFLOAT64U_INIT_C(a_fSign, a_uFraction, a_uExponent) RTFLOAT64U_INIT((a_fSign), UINT64_C(a_uFraction), (a_uExponent))
Note:
See TracChangeset
for help on using the changeset viewer.

