mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
JitArm64: Remove a comment in dcbz implementation
This implementation is pretty efficient in my opinion. And "As long as we aren't falling back to interpreter we're winning a lot" applies to basically every instruction to some degree anyway.
This commit is contained in:
@ -641,9 +641,6 @@ void JitArm64::dcbz(UGeckoInstruction inst)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// We don't care about being /too/ terribly efficient here
|
|
||||||
// As long as we aren't falling back to interpreter we're winning a lot
|
|
||||||
|
|
||||||
BitSet32 gprs_to_push = gpr.GetCallerSavedUsed();
|
BitSet32 gprs_to_push = gpr.GetCallerSavedUsed();
|
||||||
BitSet32 fprs_to_push = fpr.GetCallerSavedUsed();
|
BitSet32 fprs_to_push = fpr.GetCallerSavedUsed();
|
||||||
gprs_to_push[DecodeReg(ARM64Reg::W0)] = 0;
|
gprs_to_push[DecodeReg(ARM64Reg::W0)] = 0;
|
||||||
|
Reference in New Issue
Block a user