diff --git a/Numeric/RegisterSizes.hpp b/Numeric/RegisterSizes.hpp index 39321ffc0..2c0363595 100644 --- a/Numeric/RegisterSizes.hpp +++ b/Numeric/RegisterSizes.hpp @@ -72,6 +72,14 @@ template <> union SlicedInt { #endif uint8_t b; }; + + struct { +#if TARGET_RT_BIG_ENDIAN + SlicedInt high, low; +#else + SlicedInt low, high; +#endif + }; }; using SlicedInt16 = SlicedInt;