summaryrefslogtreecommitdiff
path: root/erts/emulator/asmjit/arm/a64emithelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/asmjit/arm/a64emithelper.cpp')
-rw-r--r--erts/emulator/asmjit/arm/a64emithelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/asmjit/arm/a64emithelper.cpp b/erts/emulator/asmjit/arm/a64emithelper.cpp
index 2d8a5781cd..1e8da619a6 100644
--- a/erts/emulator/asmjit/arm/a64emithelper.cpp
+++ b/erts/emulator/asmjit/arm/a64emithelper.cpp
@@ -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))