Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ARM] 1 instruction optimization for psq_l
  • Loading branch information
Sonicadvance1 committed Sep 8, 2013
1 parent 53fb062 commit 2126f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/Src/PowerPC/JitArm32/JitAsm.cpp
Expand Up @@ -152,8 +152,8 @@ void JitArmAsmRoutineManager::GenerateCommon()
PUSH(2, R12, _LR);
// R12, R14 is scratch
// R10 is the address
MOVI2R(R14, Memory::MEMVIEW32_MASK);
AND(R10, R10, R14);
Operand2 mask(3, 1); // ~(Memory::MEMVIEW32_MASK)
BIC(R10, R10, mask);
MOVI2R(R14, (u32)Memory::base);
ADD(R10, R10, R14);

Expand Down

0 comments on commit 2126f40

Please sign in to comment.