mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-26 03:35:27 +00:00
Move misplaced FlushIcache() in Arm64Asm.cpp
This commit is contained in:
parent
b865070de1
commit
7011758e83
@ -191,8 +191,6 @@ void Arm64Jit::GenerateFixedCode() {
|
||||
ABI_PopRegisters(regs_to_save);
|
||||
|
||||
RET();
|
||||
// Don't forget to zap the instruction cache!
|
||||
FlushIcache();
|
||||
|
||||
if (false) {
|
||||
std::vector<std::string> lines = DisassembleArm64(enterCode, GetCodePtr() - enterCode);
|
||||
@ -215,6 +213,9 @@ void Arm64Jit::GenerateFixedCode() {
|
||||
|
||||
RET();
|
||||
}
|
||||
|
||||
// Don't forget to zap the instruction cache! This must stay at the end of this function.
|
||||
FlushIcache();
|
||||
}
|
||||
|
||||
} // namespace MIPSComp
|
||||
|
Loading…
x
Reference in New Issue
Block a user