This commit is contained in:
LDj3SNuD 2019-12-29 01:36:18 +01:00
commit 8a520b6171

View file

@ -335,8 +335,7 @@ namespace ARMeilleure.Instructions
{ {
Debug.Assert(op.Type == OperandType.I32); Debug.Assert(op.Type == OperandType.I32);
Operand val = context.ZeroExtend32 (OperandType.I64, op); Operand val = EmitReverseBytes16_64Op(context, context.ZeroExtend32(OperandType.I64, op));
val = EmitReverseBytes16_64Op(context, val);
return context.ConvertI64ToI32(val); return context.ConvertI64ToI32(val);
} }