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:
parent
d91d6fcdc5
commit
1df3456267
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue