[Bug] Fixed invalid operand order in AArch64 register move (Compiler)

This commit is contained in:
kobalicek
2022-03-15 10:36:41 +01:00
parent 6efd4d563d
commit f1a399c4fe

View File

@@ -117,7 +117,7 @@ ASMJIT_FAVOR_SIZE Error EmitHelper::emitRegMove(
case TypeId::kUInt32:
case TypeId::kInt64:
case TypeId::kUInt64:
return emitter->mov(src.as<Gp>().x(), dst.as<Gp>().x());
return emitter->mov(dst.as<Gp>().x(), src.as<Gp>().x());
default: {
if (TypeUtils::isFloat32(typeId) || TypeUtils::isVec32(typeId))