mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Move misplaced FlushIcache() in Arm64Asm.cpp
This commit is contained in:
parent
b865070de1
commit
7011758e83
1 changed files with 4 additions and 3 deletions
|
@ -191,9 +191,7 @@ 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);
|
||||
for (auto s : lines) {
|
||||
|
@ -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…
Add table
Reference in a new issue