Merge pull request #12733 from mitaclaw/instructionNumber

JitState: Remove Unused instructionNumber
This commit is contained in:
Jordan Woyak 2024-04-21 14:39:25 -05:00 committed by GitHub
commit a89336001a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 3 deletions

View File

@ -951,7 +951,6 @@ bool Jit64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
js.compilerPC = op.address;
js.op = &op;
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
js.instructionNumber = i;
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
const GekkoOPInfo* opinfo = op.opinfo;
js.downcountAmount += opinfo->num_cycles;

View File

@ -1069,7 +1069,6 @@ bool JitArm64::DoJit(u32 em_address, JitBlock* b, u32 nextPC)
js.compilerPC = op.address;
js.op = &op;
js.fpr_is_store_safe = op.fprIsStoreSafeBeforeInst;
js.instructionNumber = i;
js.instructionsLeft = (code_block.m_num_instructions - 1) - i;
const GekkoOPInfo* opinfo = op.opinfo;
js.downcountAmount += opinfo->num_cycles;

View File

@ -91,7 +91,6 @@ protected:
{
u32 compilerPC;
u32 blockStart;
int instructionNumber;
int instructionsLeft;
u32 downcountAmount;
u32 numLoadStoreInst;