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:
JosJuice 2021-07-21 19:24:41 +02:00
parent d91d6fcdc5
commit 1df3456267
1 changed files with 0 additions and 3 deletions

View File

@ -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 fprs_to_push = fpr.GetCallerSavedUsed();
gprs_to_push[DecodeReg(ARM64Reg::W0)] = 0;