This commit is contained in:
lizzie 2025-11-07 02:56:01 +00:00
parent 35a66ac73a
commit 6299b8fe3c

View file

@ -113,7 +113,9 @@ public:
case 16:
return LeastSignificantHalf(value);
case 32:
return value.GetType() == Type::U32 ? value : LeastSignificantWord(value);
if (value.GetType() == Type::U32)
return value;
return LeastSignificantWord(value);
case 64:
ASSERT(value.GetType() == Type::U64);
return value;