diff options
| author | JosJuice <josjuice@gmail.com> | 2024-01-07 23:01:38 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2024-01-07 23:01:38 +0100 |
| commit | f2145c91e78ff2ae68e390deba504469ba06540b (patch) | |
| tree | 6ac23c3debf6706fab534ef937d8ab1b9df3c248 /Source | |
| parent | d94b00ec3606b63547f1b4f4cb8ab718f82de74a (diff) | |
JitArm64: Update register comments in psq_lXX/psq_stXX
This was also overlooked in 166bd87f70.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStorePaired.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStorePaired.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStorePaired.cpp index 4a2c2d3aae..5d1e561eef 100644 --- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStorePaired.cpp +++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_LoadStorePaired.cpp @@ -27,9 +27,9 @@ void JitArm64::psq_lXX(UGeckoInstruction inst) !(m_ppc_state.feature_flags & FEATURE_FLAG_MSR_DR)); // X30 is LR - // X0 is the address - // X1 contains the scale - // X2 is a temporary + // X0 is a temporary + // X1 is the address + // X2 is the scale // Q0 is the return register // Q1 is a temporary const s32 offset = inst.SIMM_12; @@ -156,8 +156,9 @@ void JitArm64::psq_stXX(UGeckoInstruction inst) !(m_ppc_state.feature_flags & FEATURE_FLAG_MSR_DR)); // X30 is LR - // X0 contains the scale - // X1 is the address + // X0 is a temporary + // X1 is the scale + // X2 is the address // Q0 is the store register const s32 offset = inst.SIMM_12; |
