mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 21:14:35 +03:00
[Bug] Fixed invalid operand order in AArch64 register move (Compiler)
This commit is contained in:
@@ -117,7 +117,7 @@ ASMJIT_FAVOR_SIZE Error EmitHelper::emitRegMove(
|
|||||||
case TypeId::kUInt32:
|
case TypeId::kUInt32:
|
||||||
case TypeId::kInt64:
|
case TypeId::kInt64:
|
||||||
case TypeId::kUInt64:
|
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: {
|
default: {
|
||||||
if (TypeUtils::isFloat32(typeId) || TypeUtils::isVec32(typeId))
|
if (TypeUtils::isFloat32(typeId) || TypeUtils::isVec32(typeId))
|
||||||
|
|||||||
Reference in New Issue
Block a user